From 51f9c3e76587f01aaffa6bc3dfca32771ae97ef2 Mon Sep 17 00:00:00 2001 From: Fendy Heryanto Date: Thu, 22 Jan 2026 07:14:35 +0000 Subject: [PATCH] mock airtable import when playwright --- .../jobs/at-import/at-import.processor.ts | 8 +- .../jobs/jobs/at-import/engine/index.ts | 122 + .../jobs/jobs/at-import/engine/mock.ts | 74 + .../engine/mockResponseData/Actor.json | 6346 +++++++++++++++++ .../engine/mockResponseData/Film.json | 1735 +++++ .../engine/mockResponseData/Producer.json | 81 + .../engine/mockResponseData/index.ts | 9 + .../at-import/engine/mockResponses/index.ts | 38 + .../engine/mockResponses/initialize.ts | 470 ++ .../at-import/engine/mockResponses/read.ts | 4661 ++++++++++++ .../readView_viw5f7BhLA3OkthNv.json | 1 + .../readView_viw8Xse051lREItSC.json | 1 + .../readView_viw8p8zWYmN4Kwine.json | 1 + .../readView_viw9HVTL3HmZ3NCDd.json | 1 + .../readView_viwMKGcEPNkD797BF.json | 1 + .../readView_viwRRK2UljiQB3kko.json | 1 + .../readView_viwWYcqdMbeOx3Eg3.json | 1 + .../readView_viwWiQnKWgbL2TGLw.json | 1 + .../readView_viwXfVqIcM25FVTbd.json | 1 + .../readView_viwZnwvKkOBnDqpul.json | 1 + .../readView_viwc6YeYMlRUFJUYa.json | 1 + .../readView_viwebeyBYaiCnNwwO.json | 1 + .../readView_viwqB059qatxSF8tI.json | 1 + .../readView_viwsF12Zep2IrUQ4L.json | 1 + .../readView_viwvu6dBtJcPFvl4b.json | 1 + .../jobs/jobs/at-import/helpers/fetchAT.ts | 94 +- tests/playwright/constants/index.ts | 6 +- 27 files changed, 13563 insertions(+), 96 deletions(-) create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/index.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mock.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Actor.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Film.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Producer.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/index.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/index.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/initialize.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/read.ts create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw5f7BhLA3OkthNv.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8Xse051lREItSC.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8p8zWYmN4Kwine.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw9HVTL3HmZ3NCDd.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwMKGcEPNkD797BF.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwRRK2UljiQB3kko.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWYcqdMbeOx3Eg3.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWiQnKWgbL2TGLw.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwXfVqIcM25FVTbd.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwZnwvKkOBnDqpul.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwc6YeYMlRUFJUYa.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwebeyBYaiCnNwwO.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwqB059qatxSF8tI.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwsF12Zep2IrUQ4L.json create mode 100644 packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwvu6dBtJcPFvl4b.json diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts index fb8b028cb2..cda4d2a0ef 100644 --- a/packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts @@ -1,6 +1,5 @@ import moment from 'moment'; import { AuditV1OperationTypes, SqlUiFactory, UITypes } from 'nocodb-sdk'; -import Airtable from 'airtable'; import hash from 'object-hash'; import dayjs from 'dayjs'; import utc from 'dayjs/plugin/utc'; @@ -13,6 +12,7 @@ import { JobsLogService } from '../jobs-log.service'; import FetchAT from './helpers/fetchAT'; import { importData } from './helpers/readAndProcessData'; import EntityMap from './helpers/EntityMap'; +import { ATImportEngine } from './engine'; import type { AirtableImportFailPayload, AirtableImportPayload, @@ -292,7 +292,6 @@ export class AtImportProcessor { const getAirtableSchema = async (sDB) => { const start = Date.now(); - if (!sDB.shareId) throw { message: @@ -319,7 +318,10 @@ export class AtImportProcessor { const file = ft.schema; atBaseId = ft.baseId; - atBase = new Airtable({ apiKey: sDB.apiKey }).base(atBaseId); + atBase = ATImportEngine.get().atBase({ + apiKey: sDB.apiKey, + baseId: atBaseId, + }); // store copy of airtable schema globally g_aTblSchema = file.tableSchemas; diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/index.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/index.ts new file mode 100644 index 0000000000..6da39769b3 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/index.ts @@ -0,0 +1,122 @@ +import axios from 'axios'; +import Airtable from 'airtable'; +import { ATMockImportEngine, MockAirtable } from './mock'; +import type { AirtableBase } from 'airtable/lib/airtable_base'; +import { isPlayWrightNode } from '~/helpers/utils'; + +export class ATImportEngine extends ATMockImportEngine { + static get() { + if (isPlayWrightNode()) { + return new ATMockImportEngine(); + } + return new ATImportEngine(); + } + + async initialize({ appId, shareId }: { appId: string; shareId: string }) { + const url = `https://airtable.com/${appId ? `${appId}/` : ''}${shareId}`; + return await axios.get(url, { + headers: { + accept: + 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', + 'accept-language': 'en-US,en;q=0.9', + 'sec-ch-ua': + '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Linux"', + 'sec-fetch-dest': 'document', + 'sec-fetch-mode': 'navigate', + 'sec-fetch-site': 'none', + 'sec-fetch-user': '?1', + 'upgrade-insecure-requests': '1', + 'User-Agent': + 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', + }, + // @ts-ignore + referrerPolicy: 'strict-origin-when-cross-origin', + body: null, + method: 'GET', + }); + } + + async read(info: { link: string; cookie: string; headers: any }) { + return await axios('https://airtable.com' + info.link, { + headers: { + accept: '*/*', + 'accept-language': 'en-US,en;q=0.9', + 'sec-ch-ua': + '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Linux"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'User-Agent': + 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', + 'x-time-zone': 'Europe/Berlin', + cookie: info.cookie, + ...info.headers, + }, + // @ts-ignore + referrerPolicy: 'no-referrer', + body: null, + method: 'GET', + responseType: 'stream', + }); + } + + async readView( + viewId: string, + info: { cookie: string; headers: any; baseInfo: any }, + ) { + return await axios( + `https://airtable.com/v0.3/view/${viewId}/readData?` + + `stringifiedObjectParams=${encodeURIComponent( + JSON.stringify({ + mayOnlyIncludeRowAndCellDataForIncludedViews: true, + mayExcludeCellDataForLargeViews: true, + }), + )}&requestId=${ + info.baseInfo.requestId + }&accessPolicy=${encodeURIComponent( + JSON.stringify({ + allowedActions: info.baseInfo.allowedActions, + shareId: info.baseInfo.shareId, + applicationId: info.baseInfo.applicationId, + generationNumber: info.baseInfo.generationNumber, + expires: info.baseInfo.expires, + signature: info.baseInfo.signature, + }), + )}`, + { + headers: { + accept: '*/*', + 'accept-language': 'en-US,en;q=0.9', + 'sec-ch-ua': + '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', + 'sec-ch-ua-mobile': '?0', + 'sec-ch-ua-platform': '"Linux"', + 'sec-fetch-dest': 'empty', + 'sec-fetch-mode': 'cors', + 'sec-fetch-site': 'same-origin', + 'User-Agent': + 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', + 'x-time-zone': 'Europe/Berlin', + cookie: info.cookie, + ...info.headers, + }, + // @ts-ignore + referrerPolicy: 'no-referrer', + body: null, + method: 'GET', + responseType: 'stream', + }, + ); + } + + atBase({ apiKey, baseId }: { apiKey: string; baseId: string }) { + if (process.env.DEBUG_MOCK_AIRTABLE_IMPORT === 'true') { + return ((title) => new MockAirtable(title)) as any as AirtableBase; + } + return new Airtable({ apiKey: apiKey }).base(baseId); + } +} diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mock.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mock.ts new file mode 100644 index 0000000000..8fa710ee42 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mock.ts @@ -0,0 +1,74 @@ +import { Readable } from 'node:stream'; +import { + initializeHeader, + initializeHtml, + readResponse, + viewsResponse, +} from './mockResponses'; +import { mockResponseData } from './mockResponseData'; +import type { AirtableBase } from 'airtable/lib/airtable_base'; +import type { FieldSet, Records } from 'airtable'; +import type { AxiosResponse } from 'axios'; + +export class ATMockImportEngine { + async initialize(_param: { appId: string; shareId: string }) { + return { + data: initializeHtml, // ← this is what axios returns + status: 200, + statusText: 'OK', + headers: initializeHeader, + config: {}, + } as AxiosResponse; + } + + async read(_info: { link: string; cookie: string; headers: any }) { + const stream = Readable.from([JSON.stringify(readResponse)]); + return { + data: stream, // ← this is what axios returns + status: 200, + statusText: 'OK', + headers: {}, + config: {}, + } as AxiosResponse; + } + + async readView(viewId: string, _info: { baseInfo: any }) { + const stream = Readable.from([JSON.stringify(viewsResponse[viewId])]); + return { + data: stream, // ← this is what axios returns + status: 200, + statusText: 'OK', + headers: {}, + config: {}, + } as AxiosResponse; + } + + atBase(_param: { apiKey: string; baseId: string }) { + return ((title) => new MockAirtable(title)) as any as AirtableBase; + } +} + +export class MockAirtable { + constructor(protected readonly title: string) {} + select(_selectParams: any) { + return this; + } + eachPage( + pageHandle: ( + records: Records
, + fetchNextPage: () => void, + ) => Promise, + done: (err: any) => Promise, + ) { + void (async () => { + let cursor = 0; + let currentRecord = mockResponseData[this.title][cursor++]; + while (currentRecord) { + await pageHandle(currentRecord.records, () => { + currentRecord = mockResponseData[this.title][cursor++]; + }); + } + done(undefined); + })(); + } +} diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Actor.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Actor.json new file mode 100644 index 0000000000..08e46754b3 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Actor.json @@ -0,0 +1,6346 @@ +[ + { + "records": [ + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec0GOZWXOGLLiykQ", + "_rawJson": { + "id": "rec0GOZWXOGLLiykQ", + "createdTime": "2022-06-04T10:28:35.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec0Xt82WHYpvqsuR", + "_rawJson": { + "id": "rec0Xt82WHYpvqsuR", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec0gLVoEhrmMsFmJ", + "_rawJson": { + "id": "rec0gLVoEhrmMsFmJ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec0olgwsDVG0JQce", + "_rawJson": { + "id": "rec0olgwsDVG0JQce", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec1KEzm7pAgP9gAR", + "_rawJson": { + "id": "rec1KEzm7pAgP9gAR", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec1Z5OM0jsTiNCBK", + "_rawJson": { + "id": "rec1Z5OM0jsTiNCBK", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec2K7kxGyA22OEXL", + "_rawJson": { + "id": "rec2K7kxGyA22OEXL", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec2X7PHIMsRui1Fm", + "_rawJson": { + "id": "rec2X7PHIMsRui1Fm", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec2a5vv4j8HPlvl3", + "_rawJson": { + "id": "rec2a5vv4j8HPlvl3", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec337y4i19Bc2OSI", + "_rawJson": { + "id": "rec337y4i19Bc2OSI", + "createdTime": "2022-06-04T10:14:00.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec3eOtvgq1M77Sbz", + "_rawJson": { + "id": "rec3eOtvgq1M77Sbz", + "createdTime": "2022-06-04T10:28:47.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec3lQEaUEiKZqtz4", + "_rawJson": { + "id": "rec3lQEaUEiKZqtz4", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec45vliR6AiDaVmw", + "_rawJson": { + "id": "rec45vliR6AiDaVmw", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec4DltqnPkMhnosC", + "_rawJson": { + "id": "rec4DltqnPkMhnosC", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec4Re52CZJfbtBlF", + "_rawJson": { + "id": "rec4Re52CZJfbtBlF", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec4SCNu8JR2hgtho", + "_rawJson": { + "id": "rec4SCNu8JR2hgtho", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec4a53AKAmizcW7P", + "_rawJson": { + "id": "rec4a53AKAmizcW7P", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec4foBIt3wPdGr3x", + "_rawJson": { + "id": "rec4foBIt3wPdGr3x", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec5AeGw9g2Zcc1Dp", + "_rawJson": { + "id": "rec5AeGw9g2Zcc1Dp", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec5QcDQfZp8Sz1jm", + "_rawJson": { + "id": "rec5QcDQfZp8Sz1jm", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec5qYEMRbcpJGft8", + "_rawJson": { + "id": "rec5qYEMRbcpJGft8", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec6RrmaUXupCy9mc", + "_rawJson": { + "id": "rec6RrmaUXupCy9mc", + "createdTime": "2022-06-04T10:29:10.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec6aChhNw7tancKN", + "_rawJson": { + "id": "rec6aChhNw7tancKN", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec86NVuZaUA8tLHm", + "_rawJson": { + "id": "rec86NVuZaUA8tLHm", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec8Aol4XCyUzbYm4", + "_rawJson": { + "id": "rec8Aol4XCyUzbYm4", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec8YiSwi0df0VGWX", + "_rawJson": { + "id": "rec8YiSwi0df0VGWX", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec8spbeeptRkTwI2", + "_rawJson": { + "id": "rec8spbeeptRkTwI2", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec9igOVcmimT3Y9L", + "_rawJson": { + "id": "rec9igOVcmimT3Y9L", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rec9kclXgbyrj9NO9", + "_rawJson": { + "id": "rec9kclXgbyrj9NO9", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recAFnq5rEHIHXbMm", + "_rawJson": { + "id": "recAFnq5rEHIHXbMm", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recAkkzpObSp0nBl6", + "_rawJson": { + "id": "recAkkzpObSp0nBl6", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recAnNQ8UN0KLwYCq", + "_rawJson": { + "id": "recAnNQ8UN0KLwYCq", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recBzO7ZWYO2qjS8w", + "_rawJson": { + "id": "recBzO7ZWYO2qjS8w", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recC8CayGDDjMZpEd", + "_rawJson": { + "id": "recC8CayGDDjMZpEd", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recCRLjpSO3ddMXiL", + "_rawJson": { + "id": "recCRLjpSO3ddMXiL", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recCjRYEkCma75s0v", + "_rawJson": { + "id": "recCjRYEkCma75s0v", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recCtFNiJbVgfGsHT", + "_rawJson": { + "id": "recCtFNiJbVgfGsHT", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recD6a4sCqt8TiR8Q", + "_rawJson": { + "id": "recD6a4sCqt8TiR8Q", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recDF2KCpnNeChhlk", + "_rawJson": { + "id": "recDF2KCpnNeChhlk", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recDQFTzHLfuXKiaL", + "_rawJson": { + "id": "recDQFTzHLfuXKiaL", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recDaofOTvuRvI1pr", + "_rawJson": { + "id": "recDaofOTvuRvI1pr", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recEOhFGsGeZGosYQ", + "_rawJson": { + "id": "recEOhFGsGeZGosYQ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recFT3n4ePuL8uYot", + "_rawJson": { + "id": "recFT3n4ePuL8uYot", + "createdTime": "2022-06-04T10:28:47.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recFmTKVp4rz4nOBD", + "_rawJson": { + "id": "recFmTKVp4rz4nOBD", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recGRJClFb1GnVtzQ", + "_rawJson": { + "id": "recGRJClFb1GnVtzQ", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recGcbwKYAwciQM4C", + "_rawJson": { + "id": "recGcbwKYAwciQM4C", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recGk76vMgL6fW3ea", + "_rawJson": { + "id": "recGk76vMgL6fW3ea", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recGqPjCMniPFLkZN", + "_rawJson": { + "id": "recGqPjCMniPFLkZN", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recH2PpevmlFJxLBx", + "_rawJson": { + "id": "recH2PpevmlFJxLBx", + "createdTime": "2022-06-04T10:28:47.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recH7aAzL1ptbPi1o", + "_rawJson": { + "id": "recH7aAzL1ptbPi1o", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recHF6ZtxyTKFZIf9", + "_rawJson": { + "id": "recHF6ZtxyTKFZIf9", + "createdTime": "2022-06-04T10:14:00.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recHJy6mtOWBvAtuh", + "_rawJson": { + "id": "recHJy6mtOWBvAtuh", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recHhMtpN2wfSEMHw", + "_rawJson": { + "id": "recHhMtpN2wfSEMHw", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recHk0bvsd5kRw0y6", + "_rawJson": { + "id": "recHk0bvsd5kRw0y6", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recHnYMoL8U1HrQyY", + "_rawJson": { + "id": "recHnYMoL8U1HrQyY", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recIJF4xTafBDQnjc", + "_rawJson": { + "id": "recIJF4xTafBDQnjc", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recIhywTbygbQQgbN", + "_rawJson": { + "id": "recIhywTbygbQQgbN", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recIozhMGB6WwBdmx", + "_rawJson": { + "id": "recIozhMGB6WwBdmx", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recItcezxgQNENw8x", + "_rawJson": { + "id": "recItcezxgQNENw8x", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recJ9NZnOI6KkyU34", + "_rawJson": { + "id": "recJ9NZnOI6KkyU34", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recJMGnuXpWaUqDW1", + "_rawJson": { + "id": "recJMGnuXpWaUqDW1", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recJfrPbGmoUgFXaP", + "_rawJson": { + "id": "recJfrPbGmoUgFXaP", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recKFbGbAWHmNggbY", + "_rawJson": { + "id": "recKFbGbAWHmNggbY", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recLRD8BHPV8hIxWe", + "_rawJson": { + "id": "recLRD8BHPV8hIxWe", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recLSReM55Y1toCWG", + "_rawJson": { + "id": "recLSReM55Y1toCWG", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recLvMNasOG29wfpF", + "_rawJson": { + "id": "recLvMNasOG29wfpF", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recMUaqN1gmCKlp7b", + "_rawJson": { + "id": "recMUaqN1gmCKlp7b", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recMayLuH1MTgTR72", + "_rawJson": { + "id": "recMayLuH1MTgTR72", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recMht7cKMbPR6ech", + "_rawJson": { + "id": "recMht7cKMbPR6ech", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recN9q2iKnlPAd6WO", + "_rawJson": { + "id": "recN9q2iKnlPAd6WO", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recNRXqmiaezz5S0q", + "_rawJson": { + "id": "recNRXqmiaezz5S0q", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recNftEXzsGkCvNDs", + "_rawJson": { + "id": "recNftEXzsGkCvNDs", + "createdTime": "2022-06-04T10:28:37.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recNk2Yp3vM8AgHI5", + "_rawJson": { + "id": "recNk2Yp3vM8AgHI5", + "createdTime": "2022-06-04T10:29:30.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recNydhq15SM1Nc8n", + "_rawJson": { + "id": "recNydhq15SM1Nc8n", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOB7seRuOwLjp0g", + "_rawJson": { + "id": "recOB7seRuOwLjp0g", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOQ2D1sPlO1LC4t", + "_rawJson": { + "id": "recOQ2D1sPlO1LC4t", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOkdHYP4Lf7CejL", + "_rawJson": { + "id": "recOkdHYP4Lf7CejL", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOnZcfciELmGjx1", + "_rawJson": { + "id": "recOnZcfciELmGjx1", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOnazU5kf9OqQaR", + "_rawJson": { + "id": "recOnazU5kf9OqQaR", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recOx2XKWOkAq2qPA", + "_rawJson": { + "id": "recOx2XKWOkAq2qPA", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recPMXTd653F1VemE", + "_rawJson": { + "id": "recPMXTd653F1VemE", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recQRG9uvMJfbE9Iu", + "_rawJson": { + "id": "recQRG9uvMJfbE9Iu", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recR3RO50q16Xe8yX", + "_rawJson": { + "id": "recR3RO50q16Xe8yX", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recROj25L2pDcrPd5", + "_rawJson": { + "id": "recROj25L2pDcrPd5", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recRiEi9GEqaE1Us3", + "_rawJson": { + "id": "recRiEi9GEqaE1Us3", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recSKn79mRptU7ICJ", + "_rawJson": { + "id": "recSKn79mRptU7ICJ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recSLRsxNScBn5610", + "_rawJson": { + "id": "recSLRsxNScBn5610", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recTmD65r9aLpUOqu", + "_rawJson": { + "id": "recTmD65r9aLpUOqu", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recUAamBRzAplmdB1", + "_rawJson": { + "id": "recUAamBRzAplmdB1", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recUVNIgnUw4ptKnZ", + "_rawJson": { + "id": "recUVNIgnUw4ptKnZ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recUmma3kPXHX0IIl", + "_rawJson": { + "id": "recUmma3kPXHX0IIl", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recUxtjxYai7E1Zbp", + "_rawJson": { + "id": "recUxtjxYai7E1Zbp", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVCh2XGcVi59SXV", + "_rawJson": { + "id": "recVCh2XGcVi59SXV", + "createdTime": "2022-06-04T10:28:45.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVVeJo2sohQQxoM", + "_rawJson": { + "id": "recVVeJo2sohQQxoM", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVZZeKqrddTn6Pe", + "_rawJson": { + "id": "recVZZeKqrddTn6Pe", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVnZ9JJA0JOY8F9", + "_rawJson": { + "id": "recVnZ9JJA0JOY8F9", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVv1dc7Fs9F0sMB", + "_rawJson": { + "id": "recVv1dc7Fs9F0sMB", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recVxrLCku2fQBoZm", + "_rawJson": { + "id": "recVxrLCku2fQBoZm", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recWi2YTm7YMu4ThT", + "_rawJson": { + "id": "recWi2YTm7YMu4ThT", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recWpO9fxhfhmWpmS", + "_rawJson": { + "id": "recWpO9fxhfhmWpmS", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + } + ] + }, + { + "records": [ + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recWslJq7SdOT5lCG", + "_rawJson": { + "id": "recWslJq7SdOT5lCG", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recWtyv4YElGJrKk2", + "_rawJson": { + "id": "recWtyv4YElGJrKk2", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recWusbxFCdIrmM6s", + "_rawJson": { + "id": "recWusbxFCdIrmM6s", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recXGsSw4fEs3njLg", + "_rawJson": { + "id": "recXGsSw4fEs3njLg", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recXyaklZivud9LCw", + "_rawJson": { + "id": "recXyaklZivud9LCw", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recYDCAnL8kc7Nykz", + "_rawJson": { + "id": "recYDCAnL8kc7Nykz", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recYGt6tejUzU3Sgw", + "_rawJson": { + "id": "recYGt6tejUzU3Sgw", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recYKZYyHVWfGeH51", + "_rawJson": { + "id": "recYKZYyHVWfGeH51", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recZ7PaS4sjeg2Yxf", + "_rawJson": { + "id": "recZ7PaS4sjeg2Yxf", + "createdTime": "2022-06-04T10:29:02.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recaGHGpGVuAs9WyH", + "_rawJson": { + "id": "recaGHGpGVuAs9WyH", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recamda0g39Z1wSl2", + "_rawJson": { + "id": "recamda0g39Z1wSl2", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recb3GCenF2uOL4hq", + "_rawJson": { + "id": "recb3GCenF2uOL4hq", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recb7hRShr26MYsV3", + "_rawJson": { + "id": "recb7hRShr26MYsV3", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recb9LQnoNwZR1lJN", + "_rawJson": { + "id": "recb9LQnoNwZR1lJN", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recbWNyIOvqryshGl", + "_rawJson": { + "id": "recbWNyIOvqryshGl", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recbprSmTSBa5TCsh", + "_rawJson": { + "id": "recbprSmTSBa5TCsh", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recc3Qtmjv3qUmqXX", + "_rawJson": { + "id": "recc3Qtmjv3qUmqXX", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recc5FllnrmN08sgx", + "_rawJson": { + "id": "recc5FllnrmN08sgx", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reccnKJZ8YDG2i4Gd", + "_rawJson": { + "id": "reccnKJZ8YDG2i4Gd", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recd5rwGHkJh5rntn", + "_rawJson": { + "id": "recd5rwGHkJh5rntn", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recdC6OoGlEPbJ3h8", + "_rawJson": { + "id": "recdC6OoGlEPbJ3h8", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recdKb5n4le8cioD3", + "_rawJson": { + "id": "recdKb5n4le8cioD3", + "createdTime": "2022-06-04T10:14:00.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recdRTwLsPHuKwWsT", + "_rawJson": { + "id": "recdRTwLsPHuKwWsT", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "receO8urhOYPs1NI2", + "_rawJson": { + "id": "receO8urhOYPs1NI2", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recf1y4xCsFC3te37", + "_rawJson": { + "id": "recf1y4xCsFC3te37", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recf2JH4or0jl7B5c", + "_rawJson": { + "id": "recf2JH4or0jl7B5c", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recf4U7FlIvyl8Opg", + "_rawJson": { + "id": "recf4U7FlIvyl8Opg", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfCaaaYQgmOD0O5", + "_rawJson": { + "id": "recfCaaaYQgmOD0O5", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfEdPY3TzUUkLTD", + "_rawJson": { + "id": "recfEdPY3TzUUkLTD", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfEeOlkOZHw7sYd", + "_rawJson": { + "id": "recfEeOlkOZHw7sYd", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfTYe9r3080Wl8o", + "_rawJson": { + "id": "recfTYe9r3080Wl8o", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfYrDQdv9JnlNrO", + "_rawJson": { + "id": "recfYrDQdv9JnlNrO", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfgN5PY80xWoQWv", + "_rawJson": { + "id": "recfgN5PY80xWoQWv", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfy4MJmjF1En3ni", + "_rawJson": { + "id": "recfy4MJmjF1En3ni", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recfySCJJBA4X3DFk", + "_rawJson": { + "id": "recfySCJJBA4X3DFk", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recgjCe9RbaymMdiN", + "_rawJson": { + "id": "recgjCe9RbaymMdiN", + "createdTime": "2022-06-04T10:28:37.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recgp3aTnqZk9PK4P", + "_rawJson": { + "id": "recgp3aTnqZk9PK4P", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rech2KmCV6ukgAbBZ", + "_rawJson": { + "id": "rech2KmCV6ukgAbBZ", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rechCRF0dRijW1KwV", + "_rawJson": { + "id": "rechCRF0dRijW1KwV", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rechLRwOdYouGu0Ev", + "_rawJson": { + "id": "rechLRwOdYouGu0Ev", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rechydeoKFxr1a4XP", + "_rawJson": { + "id": "rechydeoKFxr1a4XP", + "createdTime": "2022-06-04T10:28:47.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recirWAgCAgRaJRqY", + "_rawJson": { + "id": "recirWAgCAgRaJRqY", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recjQxQwPvMtcHXYm", + "_rawJson": { + "id": "recjQxQwPvMtcHXYm", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recjghoZaMwGX9Rzi", + "_rawJson": { + "id": "recjghoZaMwGX9Rzi", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reck9Z2W74Jve8aZJ", + "_rawJson": { + "id": "reck9Z2W74Jve8aZJ", + "createdTime": "2022-06-04T10:29:19.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reckqzyxcJAvKQNzQ", + "_rawJson": { + "id": "reckqzyxcJAvKQNzQ", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reclFv9CTC3uPyajU", + "_rawJson": { + "id": "reclFv9CTC3uPyajU", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reclN3ip7cNP8djR5", + "_rawJson": { + "id": "reclN3ip7cNP8djR5", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reclOUmBuUI2qlsjk", + "_rawJson": { + "id": "reclOUmBuUI2qlsjk", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reclY7bVVoqDZSrYS", + "_rawJson": { + "id": "reclY7bVVoqDZSrYS", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reclvhYSr2Q0KDjGe", + "_rawJson": { + "id": "reclvhYSr2Q0KDjGe", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recm0dvwScejYal3g", + "_rawJson": { + "id": "recm0dvwScejYal3g", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recm9ASi6H2s3gv3y", + "_rawJson": { + "id": "recm9ASi6H2s3gv3y", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recmnwDF4EDDrMVDX", + "_rawJson": { + "id": "recmnwDF4EDDrMVDX", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recmsEciB1t7NVSee", + "_rawJson": { + "id": "recmsEciB1t7NVSee", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recnQTMUTD7qFcX46", + "_rawJson": { + "id": "recnQTMUTD7qFcX46", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recnaVAH8l49Uiy5C", + "_rawJson": { + "id": "recnaVAH8l49Uiy5C", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recnhw2lM7tzaHAsF", + "_rawJson": { + "id": "recnhw2lM7tzaHAsF", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recnwttKkvqklJenW", + "_rawJson": { + "id": "recnwttKkvqklJenW", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recoMBjRcJTxeg8QT", + "_rawJson": { + "id": "recoMBjRcJTxeg8QT", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recoOZi2F5RovSQtw", + "_rawJson": { + "id": "recoOZi2F5RovSQtw", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recoQ6GdO1CG0BaIf", + "_rawJson": { + "id": "recoQ6GdO1CG0BaIf", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recq08YiQkoqTW1U6", + "_rawJson": { + "id": "recq08YiQkoqTW1U6", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recq4xHpuf56vXo19", + "_rawJson": { + "id": "recq4xHpuf56vXo19", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recqUeem4vXy6EUaK", + "_rawJson": { + "id": "recqUeem4vXy6EUaK", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recr7iBB0mAeMN9TQ", + "_rawJson": { + "id": "recr7iBB0mAeMN9TQ", + "createdTime": "2022-06-04T10:29:04.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recrUCRhEjHmLSMut", + "_rawJson": { + "id": "recrUCRhEjHmLSMut", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recrWLwR1NbyRXHs7", + "_rawJson": { + "id": "recrWLwR1NbyRXHs7", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recruKbdthW5YsNDf", + "_rawJson": { + "id": "recruKbdthW5YsNDf", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recsEpQxbmydcIIkR", + "_rawJson": { + "id": "recsEpQxbmydcIIkR", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recsJBFU28TmwaNCQ", + "_rawJson": { + "id": "recsJBFU28TmwaNCQ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recsRMDjXsPBw60AZ", + "_rawJson": { + "id": "recsRMDjXsPBw60AZ", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rect0gTA4wDYn2BKH", + "_rawJson": { + "id": "rect0gTA4wDYn2BKH", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rect9kzlRMc12Mvi8", + "_rawJson": { + "id": "rect9kzlRMc12Mvi8", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rectIdUq5aSUz6ZH0", + "_rawJson": { + "id": "rectIdUq5aSUz6ZH0", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "rectT25FhViZOypqX", + "_rawJson": { + "id": "rectT25FhViZOypqX", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recu3SBZzdX6YZCB6", + "_rawJson": { + "id": "recu3SBZzdX6YZCB6", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recv0r2dGRYbhT63F", + "_rawJson": { + "id": "recv0r2dGRYbhT63F", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recv0sFzxriYXODWl", + "_rawJson": { + "id": "recv0sFzxriYXODWl", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recvSHqAI5lYUDfIS", + "_rawJson": { + "id": "recvSHqAI5lYUDfIS", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recvkU85tMv1rCJQF", + "_rawJson": { + "id": "recvkU85tMv1rCJQF", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recvmVSWTF1bsC9Xx", + "_rawJson": { + "id": "recvmVSWTF1bsC9Xx", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recwk9Nzp7ah6X7Kn", + "_rawJson": { + "id": "recwk9Nzp7ah6X7Kn", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recx03ffx0xTpIy46", + "_rawJson": { + "id": "recx03ffx0xTpIy46", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recxDWye6rkGb7mx5", + "_rawJson": { + "id": "recxDWye6rkGb7mx5", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "recxPMNXTYYyvADzO", + "_rawJson": { + "id": "recxPMNXTYYyvADzO", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczJ0qYK15MpjOT7", + "_rawJson": { + "id": "reczJ0qYK15MpjOT7", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczJJ4AWGa5J2v8d", + "_rawJson": { + "id": "reczJJ4AWGa5J2v8d", + "createdTime": "2022-06-04T10:29:12.000Z", + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor1", + "Notes": "Actor notes 1", + "Status": "Todo", + "Film": [ + "recyalS7o5nh2Ec76", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczn8vfg579HZ2yi", + "_rawJson": { + "id": "reczn8vfg579HZ2yi", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczo05lSAgw0Ox4o", + "_rawJson": { + "id": "reczo05lSAgw0Ox4o", + "createdTime": "2022-06-04T10:29:21.000Z", + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + "fields": { + "Name": "Actor3", + "Notes": "Actor notes 3", + "Status": "Done", + "Film": [ + "recaIDk49KXAJej9D", + "rec0CvbxNpbj5GuRn" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczv5NMjux3yZmFB", + "_rawJson": { + "id": "reczv5NMjux3yZmFB", + "createdTime": "2022-06-04T10:28:47.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Actor" + }, + "id": "reczyMVGQs0YIw6lw", + "_rawJson": { + "id": "reczyMVGQs0YIw6lw", + "createdTime": "2022-06-04T10:29:32.000Z", + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + }, + "fields": { + "Name": "Actor2", + "Notes": "Actor notes 2", + "Status": "In progress", + "Film": [ + "recyalS7o5nh2Ec76", + "recaIDk49KXAJej9D" + ] + } + } + ] + } +] \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Film.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Film.json new file mode 100644 index 0000000000..eac76c82dd --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Film.json @@ -0,0 +1,1735 @@ +[ + { + "records": [ + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Film" + }, + "id": "rec0CvbxNpbj5GuRn", + "_rawJson": { + "id": "rec0CvbxNpbj5GuRn", + "createdTime": "2022-06-04T10:10:50.000Z", + "fields": { + "Name": "Movie-3", + "Notes": "Ugly", + "Status": "Done", + "Done": true, + "Tags": [ + "Apr", + "May", + "Jun" + ], + "Date": "2022-06-03", + "Phone": "456456456", + "Email": "c@b.com", + "URL": "www.c.com", + "Number": 3, + "Value": 3, + "Percent": 0.03, + "Duration": 180, + "Rating": 3, + "Calculation": 744.12, + "Actor": [ + "recdKb5n4le8cioD3", + "recHF6ZtxyTKFZIf9", + "rec0GOZWXOGLLiykQ", + "recNftEXzsGkCvNDs", + "recVCh2XGcVi59SXV", + "recH2PpevmlFJxLBx", + "recFT3n4ePuL8uYot", + "rec3eOtvgq1M77Sbz", + "recZ7PaS4sjeg2Yxf", + "recf4U7FlIvyl8Opg", + "recOnZcfciELmGjx1", + "rec4DltqnPkMhnosC", + "recItcezxgQNENw8x", + "recr7iBB0mAeMN9TQ", + "recOB7seRuOwLjp0g", + "recBzO7ZWYO2qjS8w", + "rec6RrmaUXupCy9mc", + "recq4xHpuf56vXo19", + "reczJJ4AWGa5J2v8d", + "recUxtjxYai7E1Zbp", + "recSLRsxNScBn5610", + "recq08YiQkoqTW1U6", + "recTmD65r9aLpUOqu", + "recfEeOlkOZHw7sYd", + "recAkkzpObSp0nBl6", + "recYGt6tejUzU3Sgw", + "recf2JH4or0jl7B5c", + "recjghoZaMwGX9Rzi", + "recruKbdthW5YsNDf", + "recUmma3kPXHX0IIl", + "recb3GCenF2uOL4hq", + "recQRG9uvMJfbE9Iu", + "reck9Z2W74Jve8aZJ", + "recu3SBZzdX6YZCB6", + "rec4Re52CZJfbtBlF", + "reccnKJZ8YDG2i4Gd", + "recx03ffx0xTpIy46", + "recrUCRhEjHmLSMut", + "recxDWye6rkGb7mx5", + "rech2KmCV6ukgAbBZ", + "rec0Xt82WHYpvqsuR", + "recVVeJo2sohQQxoM", + "recm0dvwScejYal3g", + "recCjRYEkCma75s0v", + "reclFv9CTC3uPyajU", + "recDQFTzHLfuXKiaL", + "recROj25L2pDcrPd5", + "recvSHqAI5lYUDfIS", + "rec0olgwsDVG0JQce", + "recGqPjCMniPFLkZN", + "reclOUmBuUI2qlsjk", + "recWslJq7SdOT5lCG", + "recJMGnuXpWaUqDW1", + "recf1y4xCsFC3te37", + "recOnazU5kf9OqQaR", + "recMayLuH1MTgTR72", + "recNRXqmiaezz5S0q", + "reclY7bVVoqDZSrYS", + "recYDCAnL8kc7Nykz", + "reczo05lSAgw0Ox4o", + "rec4SCNu8JR2hgtho", + "recOkdHYP4Lf7CejL", + "recMUaqN1gmCKlp7b", + "recGRJClFb1GnVtzQ", + "recNk2Yp3vM8AgHI5", + "recmsEciB1t7NVSee", + "recHhMtpN2wfSEMHw", + "rec8YiSwi0df0VGWX", + "rec86NVuZaUA8tLHm", + "rec5qYEMRbcpJGft8", + "recxPMNXTYYyvADzO", + "recamda0g39Z1wSl2", + "recFmTKVp4rz4nOBD", + "recfTYe9r3080Wl8o", + "recm9ASi6H2s3gv3y", + "rec0gLVoEhrmMsFmJ", + "recwk9Nzp7ah6X7Kn", + "recJ9NZnOI6KkyU34", + "recDaofOTvuRvI1pr", + "recoOZi2F5RovSQtw", + "recnhw2lM7tzaHAsF", + "recWpO9fxhfhmWpmS", + "rechCRF0dRijW1KwV", + "recLvMNasOG29wfpF", + "recWusbxFCdIrmM6s", + "rectT25FhViZOypqX", + "recnwttKkvqklJenW", + "recH7aAzL1ptbPi1o", + "recIJF4xTafBDQnjc", + "rec2X7PHIMsRui1Fm", + "recvmVSWTF1bsC9Xx", + "recv0r2dGRYbhT63F", + "recPMXTd653F1VemE", + "receO8urhOYPs1NI2", + "recb7hRShr26MYsV3", + "rec9kclXgbyrj9NO9", + "recsRMDjXsPBw60AZ", + "rect0gTA4wDYn2BKH", + "recR3RO50q16Xe8yX", + "recfCaaaYQgmOD0O5", + "rec3lQEaUEiKZqtz4", + "recbprSmTSBa5TCsh", + "rect9kzlRMc12Mvi8", + "recoQ6GdO1CG0BaIf", + "recEOhFGsGeZGosYQ", + "rec4a53AKAmizcW7P", + "recXyaklZivud9LCw", + "reclvhYSr2Q0KDjGe", + "recirWAgCAgRaJRqY", + "recrWLwR1NbyRXHs7", + "recfy4MJmjF1En3ni", + "recnaVAH8l49Uiy5C", + "recD6a4sCqt8TiR8Q", + "recHJy6mtOWBvAtuh", + "recVv1dc7Fs9F0sMB", + "recMht7cKMbPR6ech", + "recSKn79mRptU7ICJ", + "reczJ0qYK15MpjOT7", + "recqUeem4vXy6EUaK", + "recVxrLCku2fQBoZm", + "rec45vliR6AiDaVmw", + "recRiEi9GEqaE1Us3", + "recb9LQnoNwZR1lJN", + "rec5AeGw9g2Zcc1Dp", + "rec9igOVcmimT3Y9L", + "recc5FllnrmN08sgx", + "recdC6OoGlEPbJ3h8", + "recHk0bvsd5kRw0y6" + ], + "Status (from Actor)": [ + "Done", + "Todo", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done" + ], + "Status Rollup (from Actor)": 128 + } + }, + "fields": { + "Name": "Movie-3", + "Notes": "Ugly", + "Status": "Done", + "Done": true, + "Tags": [ + "Apr", + "May", + "Jun" + ], + "Date": "2022-06-03", + "Phone": "456456456", + "Email": "c@b.com", + "URL": "www.c.com", + "Number": 3, + "Value": 3, + "Percent": 0.03, + "Duration": 180, + "Rating": 3, + "Calculation": 744.12, + "Actor": [ + "recdKb5n4le8cioD3", + "recHF6ZtxyTKFZIf9", + "rec0GOZWXOGLLiykQ", + "recNftEXzsGkCvNDs", + "recVCh2XGcVi59SXV", + "recH2PpevmlFJxLBx", + "recFT3n4ePuL8uYot", + "rec3eOtvgq1M77Sbz", + "recZ7PaS4sjeg2Yxf", + "recf4U7FlIvyl8Opg", + "recOnZcfciELmGjx1", + "rec4DltqnPkMhnosC", + "recItcezxgQNENw8x", + "recr7iBB0mAeMN9TQ", + "recOB7seRuOwLjp0g", + "recBzO7ZWYO2qjS8w", + "rec6RrmaUXupCy9mc", + "recq4xHpuf56vXo19", + "reczJJ4AWGa5J2v8d", + "recUxtjxYai7E1Zbp", + "recSLRsxNScBn5610", + "recq08YiQkoqTW1U6", + "recTmD65r9aLpUOqu", + "recfEeOlkOZHw7sYd", + "recAkkzpObSp0nBl6", + "recYGt6tejUzU3Sgw", + "recf2JH4or0jl7B5c", + "recjghoZaMwGX9Rzi", + "recruKbdthW5YsNDf", + "recUmma3kPXHX0IIl", + "recb3GCenF2uOL4hq", + "recQRG9uvMJfbE9Iu", + "reck9Z2W74Jve8aZJ", + "recu3SBZzdX6YZCB6", + "rec4Re52CZJfbtBlF", + "reccnKJZ8YDG2i4Gd", + "recx03ffx0xTpIy46", + "recrUCRhEjHmLSMut", + "recxDWye6rkGb7mx5", + "rech2KmCV6ukgAbBZ", + "rec0Xt82WHYpvqsuR", + "recVVeJo2sohQQxoM", + "recm0dvwScejYal3g", + "recCjRYEkCma75s0v", + "reclFv9CTC3uPyajU", + "recDQFTzHLfuXKiaL", + "recROj25L2pDcrPd5", + "recvSHqAI5lYUDfIS", + "rec0olgwsDVG0JQce", + "recGqPjCMniPFLkZN", + "reclOUmBuUI2qlsjk", + "recWslJq7SdOT5lCG", + "recJMGnuXpWaUqDW1", + "recf1y4xCsFC3te37", + "recOnazU5kf9OqQaR", + "recMayLuH1MTgTR72", + "recNRXqmiaezz5S0q", + "reclY7bVVoqDZSrYS", + "recYDCAnL8kc7Nykz", + "reczo05lSAgw0Ox4o", + "rec4SCNu8JR2hgtho", + "recOkdHYP4Lf7CejL", + "recMUaqN1gmCKlp7b", + "recGRJClFb1GnVtzQ", + "recNk2Yp3vM8AgHI5", + "recmsEciB1t7NVSee", + "recHhMtpN2wfSEMHw", + "rec8YiSwi0df0VGWX", + "rec86NVuZaUA8tLHm", + "rec5qYEMRbcpJGft8", + "recxPMNXTYYyvADzO", + "recamda0g39Z1wSl2", + "recFmTKVp4rz4nOBD", + "recfTYe9r3080Wl8o", + "recm9ASi6H2s3gv3y", + "rec0gLVoEhrmMsFmJ", + "recwk9Nzp7ah6X7Kn", + "recJ9NZnOI6KkyU34", + "recDaofOTvuRvI1pr", + "recoOZi2F5RovSQtw", + "recnhw2lM7tzaHAsF", + "recWpO9fxhfhmWpmS", + "rechCRF0dRijW1KwV", + "recLvMNasOG29wfpF", + "recWusbxFCdIrmM6s", + "rectT25FhViZOypqX", + "recnwttKkvqklJenW", + "recH7aAzL1ptbPi1o", + "recIJF4xTafBDQnjc", + "rec2X7PHIMsRui1Fm", + "recvmVSWTF1bsC9Xx", + "recv0r2dGRYbhT63F", + "recPMXTd653F1VemE", + "receO8urhOYPs1NI2", + "recb7hRShr26MYsV3", + "rec9kclXgbyrj9NO9", + "recsRMDjXsPBw60AZ", + "rect0gTA4wDYn2BKH", + "recR3RO50q16Xe8yX", + "recfCaaaYQgmOD0O5", + "rec3lQEaUEiKZqtz4", + "recbprSmTSBa5TCsh", + "rect9kzlRMc12Mvi8", + "recoQ6GdO1CG0BaIf", + "recEOhFGsGeZGosYQ", + "rec4a53AKAmizcW7P", + "recXyaklZivud9LCw", + "reclvhYSr2Q0KDjGe", + "recirWAgCAgRaJRqY", + "recrWLwR1NbyRXHs7", + "recfy4MJmjF1En3ni", + "recnaVAH8l49Uiy5C", + "recD6a4sCqt8TiR8Q", + "recHJy6mtOWBvAtuh", + "recVv1dc7Fs9F0sMB", + "recMht7cKMbPR6ech", + "recSKn79mRptU7ICJ", + "reczJ0qYK15MpjOT7", + "recqUeem4vXy6EUaK", + "recVxrLCku2fQBoZm", + "rec45vliR6AiDaVmw", + "recRiEi9GEqaE1Us3", + "recb9LQnoNwZR1lJN", + "rec5AeGw9g2Zcc1Dp", + "rec9igOVcmimT3Y9L", + "recc5FllnrmN08sgx", + "recdC6OoGlEPbJ3h8", + "recHk0bvsd5kRw0y6" + ], + "Status (from Actor)": [ + "Done", + "Todo", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done", + "Todo", + "Done" + ], + "Status Rollup (from Actor)": 128 + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Film" + }, + "id": "recaIDk49KXAJej9D", + "_rawJson": { + "id": "recaIDk49KXAJej9D", + "createdTime": "2022-06-04T10:10:50.000Z", + "fields": { + "Name": "Movie-2", + "Notes": "Bad", + "Status": "In progress", + "Tags": [ + "Feb", + "Mar" + ], + "Date": "2022-06-02", + "Phone": "234234234", + "Email": "b@b.com", + "URL": "www.b.com", + "Number": 2, + "Value": 2, + "Percent": 0.02, + "Duration": 120, + "Rating": 2, + "Calculation": 496.08, + "Actor": [ + "rec337y4i19Bc2OSI", + "recdKb5n4le8cioD3", + "recgjCe9RbaymMdiN", + "recNftEXzsGkCvNDs", + "rechydeoKFxr1a4XP", + "recH2PpevmlFJxLBx", + "reczv5NMjux3yZmFB", + "rec3eOtvgq1M77Sbz", + "recVZZeKqrddTn6Pe", + "recf4U7FlIvyl8Opg", + "recGk76vMgL6fW3ea", + "rec4DltqnPkMhnosC", + "recC8CayGDDjMZpEd", + "recr7iBB0mAeMN9TQ", + "recHnYMoL8U1HrQyY", + "recBzO7ZWYO2qjS8w", + "recLRD8BHPV8hIxWe", + "recq4xHpuf56vXo19", + "rectIdUq5aSUz6ZH0", + "recUxtjxYai7E1Zbp", + "recmnwDF4EDDrMVDX", + "recq08YiQkoqTW1U6", + "recnQTMUTD7qFcX46", + "recfEeOlkOZHw7sYd", + "rec8Aol4XCyUzbYm4", + "recYGt6tejUzU3Sgw", + "rec4foBIt3wPdGr3x", + "recjghoZaMwGX9Rzi", + "rec5QcDQfZp8Sz1jm", + "recUmma3kPXHX0IIl", + "recd5rwGHkJh5rntn", + "recQRG9uvMJfbE9Iu", + "recXGsSw4fEs3njLg", + "recu3SBZzdX6YZCB6", + "rec1KEzm7pAgP9gAR", + "reccnKJZ8YDG2i4Gd", + "rechLRwOdYouGu0Ev", + "recrUCRhEjHmLSMut", + "recUAamBRzAplmdB1", + "rech2KmCV6ukgAbBZ", + "recWi2YTm7YMu4ThT", + "recVVeJo2sohQQxoM", + "recaGHGpGVuAs9WyH", + "recCjRYEkCma75s0v", + "recjQxQwPvMtcHXYm", + "recDQFTzHLfuXKiaL", + "recVnZ9JJA0JOY8F9", + "recvSHqAI5lYUDfIS", + "recoMBjRcJTxeg8QT", + "recGqPjCMniPFLkZN", + "recN9q2iKnlPAd6WO", + "recWslJq7SdOT5lCG", + "recfEdPY3TzUUkLTD", + "recf1y4xCsFC3te37", + "rec8spbeeptRkTwI2", + "recMayLuH1MTgTR72", + "rec2a5vv4j8HPlvl3", + "reclY7bVVoqDZSrYS", + "rec2K7kxGyA22OEXL", + "reczo05lSAgw0Ox4o", + "reckqzyxcJAvKQNzQ", + "recOkdHYP4Lf7CejL", + "rec1Z5OM0jsTiNCBK", + "recGRJClFb1GnVtzQ", + "recUVNIgnUw4ptKnZ", + "recmsEciB1t7NVSee", + "recAnNQ8UN0KLwYCq", + "rec8YiSwi0df0VGWX", + "recCtFNiJbVgfGsHT", + "rec5qYEMRbcpJGft8", + "recsJBFU28TmwaNCQ", + "recamda0g39Z1wSl2", + "recdRTwLsPHuKwWsT", + "recfTYe9r3080Wl8o", + "recbWNyIOvqryshGl", + "rec0gLVoEhrmMsFmJ", + "recGcbwKYAwciQM4C", + "recJ9NZnOI6KkyU34", + "recOx2XKWOkAq2qPA", + "recoOZi2F5RovSQtw", + "recsEpQxbmydcIIkR", + "recWpO9fxhfhmWpmS", + "recKFbGbAWHmNggbY", + "recLvMNasOG29wfpF", + "recfySCJJBA4X3DFk", + "rectT25FhViZOypqX", + "reczn8vfg579HZ2yi", + "recH7aAzL1ptbPi1o", + "recgp3aTnqZk9PK4P", + "rec2X7PHIMsRui1Fm", + "recWtyv4YElGJrKk2", + "recv0r2dGRYbhT63F", + "recv0sFzxriYXODWl", + "receO8urhOYPs1NI2", + "reclN3ip7cNP8djR5", + "rec9kclXgbyrj9NO9", + "recvkU85tMv1rCJQF", + "rect0gTA4wDYn2BKH", + "recfgN5PY80xWoQWv", + "recfCaaaYQgmOD0O5", + "recDF2KCpnNeChhlk", + "recbprSmTSBa5TCsh", + "recAFnq5rEHIHXbMm", + "recoQ6GdO1CG0BaIf", + "recJfrPbGmoUgFXaP", + "rec4a53AKAmizcW7P", + "recYKZYyHVWfGeH51", + "reclvhYSr2Q0KDjGe", + "recc3Qtmjv3qUmqXX", + "recrWLwR1NbyRXHs7", + "recIhywTbygbQQgbN", + "recnaVAH8l49Uiy5C", + "reczyMVGQs0YIw6lw", + "recHJy6mtOWBvAtuh", + "recLSReM55Y1toCWG", + "recMht7cKMbPR6ech", + "recfYrDQdv9JnlNrO", + "reczJ0qYK15MpjOT7", + "recNydhq15SM1Nc8n", + "recVxrLCku2fQBoZm", + "recIozhMGB6WwBdmx", + "recRiEi9GEqaE1Us3", + "recCRLjpSO3ddMXiL", + "rec5AeGw9g2Zcc1Dp", + "rec6aChhNw7tancKN", + "recc5FllnrmN08sgx", + "recOQ2D1sPlO1LC4t", + "recHk0bvsd5kRw0y6" + ], + "Status (from Actor)": [ + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done" + ], + "Status Rollup (from Actor)": 128 + } + }, + "fields": { + "Name": "Movie-2", + "Notes": "Bad", + "Status": "In progress", + "Tags": [ + "Feb", + "Mar" + ], + "Date": "2022-06-02", + "Phone": "234234234", + "Email": "b@b.com", + "URL": "www.b.com", + "Number": 2, + "Value": 2, + "Percent": 0.02, + "Duration": 120, + "Rating": 2, + "Calculation": 496.08, + "Actor": [ + "rec337y4i19Bc2OSI", + "recdKb5n4le8cioD3", + "recgjCe9RbaymMdiN", + "recNftEXzsGkCvNDs", + "rechydeoKFxr1a4XP", + "recH2PpevmlFJxLBx", + "reczv5NMjux3yZmFB", + "rec3eOtvgq1M77Sbz", + "recVZZeKqrddTn6Pe", + "recf4U7FlIvyl8Opg", + "recGk76vMgL6fW3ea", + "rec4DltqnPkMhnosC", + "recC8CayGDDjMZpEd", + "recr7iBB0mAeMN9TQ", + "recHnYMoL8U1HrQyY", + "recBzO7ZWYO2qjS8w", + "recLRD8BHPV8hIxWe", + "recq4xHpuf56vXo19", + "rectIdUq5aSUz6ZH0", + "recUxtjxYai7E1Zbp", + "recmnwDF4EDDrMVDX", + "recq08YiQkoqTW1U6", + "recnQTMUTD7qFcX46", + "recfEeOlkOZHw7sYd", + "rec8Aol4XCyUzbYm4", + "recYGt6tejUzU3Sgw", + "rec4foBIt3wPdGr3x", + "recjghoZaMwGX9Rzi", + "rec5QcDQfZp8Sz1jm", + "recUmma3kPXHX0IIl", + "recd5rwGHkJh5rntn", + "recQRG9uvMJfbE9Iu", + "recXGsSw4fEs3njLg", + "recu3SBZzdX6YZCB6", + "rec1KEzm7pAgP9gAR", + "reccnKJZ8YDG2i4Gd", + "rechLRwOdYouGu0Ev", + "recrUCRhEjHmLSMut", + "recUAamBRzAplmdB1", + "rech2KmCV6ukgAbBZ", + "recWi2YTm7YMu4ThT", + "recVVeJo2sohQQxoM", + "recaGHGpGVuAs9WyH", + "recCjRYEkCma75s0v", + "recjQxQwPvMtcHXYm", + "recDQFTzHLfuXKiaL", + "recVnZ9JJA0JOY8F9", + "recvSHqAI5lYUDfIS", + "recoMBjRcJTxeg8QT", + "recGqPjCMniPFLkZN", + "recN9q2iKnlPAd6WO", + "recWslJq7SdOT5lCG", + "recfEdPY3TzUUkLTD", + "recf1y4xCsFC3te37", + "rec8spbeeptRkTwI2", + "recMayLuH1MTgTR72", + "rec2a5vv4j8HPlvl3", + "reclY7bVVoqDZSrYS", + "rec2K7kxGyA22OEXL", + "reczo05lSAgw0Ox4o", + "reckqzyxcJAvKQNzQ", + "recOkdHYP4Lf7CejL", + "rec1Z5OM0jsTiNCBK", + "recGRJClFb1GnVtzQ", + "recUVNIgnUw4ptKnZ", + "recmsEciB1t7NVSee", + "recAnNQ8UN0KLwYCq", + "rec8YiSwi0df0VGWX", + "recCtFNiJbVgfGsHT", + "rec5qYEMRbcpJGft8", + "recsJBFU28TmwaNCQ", + "recamda0g39Z1wSl2", + "recdRTwLsPHuKwWsT", + "recfTYe9r3080Wl8o", + "recbWNyIOvqryshGl", + "rec0gLVoEhrmMsFmJ", + "recGcbwKYAwciQM4C", + "recJ9NZnOI6KkyU34", + "recOx2XKWOkAq2qPA", + "recoOZi2F5RovSQtw", + "recsEpQxbmydcIIkR", + "recWpO9fxhfhmWpmS", + "recKFbGbAWHmNggbY", + "recLvMNasOG29wfpF", + "recfySCJJBA4X3DFk", + "rectT25FhViZOypqX", + "reczn8vfg579HZ2yi", + "recH7aAzL1ptbPi1o", + "recgp3aTnqZk9PK4P", + "rec2X7PHIMsRui1Fm", + "recWtyv4YElGJrKk2", + "recv0r2dGRYbhT63F", + "recv0sFzxriYXODWl", + "receO8urhOYPs1NI2", + "reclN3ip7cNP8djR5", + "rec9kclXgbyrj9NO9", + "recvkU85tMv1rCJQF", + "rect0gTA4wDYn2BKH", + "recfgN5PY80xWoQWv", + "recfCaaaYQgmOD0O5", + "recDF2KCpnNeChhlk", + "recbprSmTSBa5TCsh", + "recAFnq5rEHIHXbMm", + "recoQ6GdO1CG0BaIf", + "recJfrPbGmoUgFXaP", + "rec4a53AKAmizcW7P", + "recYKZYyHVWfGeH51", + "reclvhYSr2Q0KDjGe", + "recc3Qtmjv3qUmqXX", + "recrWLwR1NbyRXHs7", + "recIhywTbygbQQgbN", + "recnaVAH8l49Uiy5C", + "reczyMVGQs0YIw6lw", + "recHJy6mtOWBvAtuh", + "recLSReM55Y1toCWG", + "recMht7cKMbPR6ech", + "recfYrDQdv9JnlNrO", + "reczJ0qYK15MpjOT7", + "recNydhq15SM1Nc8n", + "recVxrLCku2fQBoZm", + "recIozhMGB6WwBdmx", + "recRiEi9GEqaE1Us3", + "recCRLjpSO3ddMXiL", + "rec5AeGw9g2Zcc1Dp", + "rec6aChhNw7tancKN", + "recc5FllnrmN08sgx", + "recOQ2D1sPlO1LC4t", + "recHk0bvsd5kRw0y6" + ], + "Status (from Actor)": [ + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done", + "In progress", + "Done" + ], + "Status Rollup (from Actor)": 128 + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Film" + }, + "id": "recyalS7o5nh2Ec76", + "_rawJson": { + "id": "recyalS7o5nh2Ec76", + "createdTime": "2022-06-04T10:10:50.000Z", + "fields": { + "Name": "Movie-1", + "Notes": "Good", + "Status": "Todo", + "Done": true, + "Tags": [ + "Jan" + ], + "Date": "2022-06-01", + "Phone": "123123123", + "Email": "a@b.com", + "URL": "www.a.com", + "Number": 1, + "Value": 1, + "Percent": 0.01, + "Duration": 60, + "Rating": 1, + "Calculation": 248.04, + "Actor": [ + "recHF6ZtxyTKFZIf9", + "rec337y4i19Bc2OSI", + "rec0GOZWXOGLLiykQ", + "recgjCe9RbaymMdiN", + "recVCh2XGcVi59SXV", + "rechydeoKFxr1a4XP", + "recFT3n4ePuL8uYot", + "reczv5NMjux3yZmFB", + "recZ7PaS4sjeg2Yxf", + "recVZZeKqrddTn6Pe", + "recOnZcfciELmGjx1", + "recGk76vMgL6fW3ea", + "recItcezxgQNENw8x", + "recC8CayGDDjMZpEd", + "recOB7seRuOwLjp0g", + "recHnYMoL8U1HrQyY", + "rec6RrmaUXupCy9mc", + "recLRD8BHPV8hIxWe", + "reczJJ4AWGa5J2v8d", + "rectIdUq5aSUz6ZH0", + "recSLRsxNScBn5610", + "recmnwDF4EDDrMVDX", + "recTmD65r9aLpUOqu", + "recnQTMUTD7qFcX46", + "recAkkzpObSp0nBl6", + "rec8Aol4XCyUzbYm4", + "recf2JH4or0jl7B5c", + "rec4foBIt3wPdGr3x", + "recruKbdthW5YsNDf", + "rec5QcDQfZp8Sz1jm", + "recb3GCenF2uOL4hq", + "recd5rwGHkJh5rntn", + "reck9Z2W74Jve8aZJ", + "recXGsSw4fEs3njLg", + "rec4Re52CZJfbtBlF", + "rec1KEzm7pAgP9gAR", + "recx03ffx0xTpIy46", + "rechLRwOdYouGu0Ev", + "recxDWye6rkGb7mx5", + "recUAamBRzAplmdB1", + "rec0Xt82WHYpvqsuR", + "recWi2YTm7YMu4ThT", + "recm0dvwScejYal3g", + "recaGHGpGVuAs9WyH", + "reclFv9CTC3uPyajU", + "recjQxQwPvMtcHXYm", + "recROj25L2pDcrPd5", + "recVnZ9JJA0JOY8F9", + "rec0olgwsDVG0JQce", + "recoMBjRcJTxeg8QT", + "reclOUmBuUI2qlsjk", + "recN9q2iKnlPAd6WO", + "recJMGnuXpWaUqDW1", + "recfEdPY3TzUUkLTD", + "recOnazU5kf9OqQaR", + "rec8spbeeptRkTwI2", + "recNRXqmiaezz5S0q", + "rec2a5vv4j8HPlvl3", + "recYDCAnL8kc7Nykz", + "rec2K7kxGyA22OEXL", + "rec4SCNu8JR2hgtho", + "reckqzyxcJAvKQNzQ", + "recMUaqN1gmCKlp7b", + "rec1Z5OM0jsTiNCBK", + "recNk2Yp3vM8AgHI5", + "recUVNIgnUw4ptKnZ", + "recHhMtpN2wfSEMHw", + "recAnNQ8UN0KLwYCq", + "rec86NVuZaUA8tLHm", + "recCtFNiJbVgfGsHT", + "recxPMNXTYYyvADzO", + "recsJBFU28TmwaNCQ", + "recFmTKVp4rz4nOBD", + "recdRTwLsPHuKwWsT", + "recm9ASi6H2s3gv3y", + "recbWNyIOvqryshGl", + "recwk9Nzp7ah6X7Kn", + "recGcbwKYAwciQM4C", + "recDaofOTvuRvI1pr", + "recOx2XKWOkAq2qPA", + "recnhw2lM7tzaHAsF", + "recsEpQxbmydcIIkR", + "rechCRF0dRijW1KwV", + "recKFbGbAWHmNggbY", + "recWusbxFCdIrmM6s", + "recfySCJJBA4X3DFk", + "recnwttKkvqklJenW", + "reczn8vfg579HZ2yi", + "recIJF4xTafBDQnjc", + "recgp3aTnqZk9PK4P", + "recvmVSWTF1bsC9Xx", + "recWtyv4YElGJrKk2", + "recPMXTd653F1VemE", + "recv0sFzxriYXODWl", + "recb7hRShr26MYsV3", + "reclN3ip7cNP8djR5", + "recsRMDjXsPBw60AZ", + "recvkU85tMv1rCJQF", + "recR3RO50q16Xe8yX", + "recfgN5PY80xWoQWv", + "rec3lQEaUEiKZqtz4", + "recDF2KCpnNeChhlk", + "rect9kzlRMc12Mvi8", + "recAFnq5rEHIHXbMm", + "recEOhFGsGeZGosYQ", + "recJfrPbGmoUgFXaP", + "recXyaklZivud9LCw", + "recYKZYyHVWfGeH51", + "recirWAgCAgRaJRqY", + "recc3Qtmjv3qUmqXX", + "recfy4MJmjF1En3ni", + "recIhywTbygbQQgbN", + "recD6a4sCqt8TiR8Q", + "reczyMVGQs0YIw6lw", + "recVv1dc7Fs9F0sMB", + "recLSReM55Y1toCWG", + "recSKn79mRptU7ICJ", + "recfYrDQdv9JnlNrO", + "recqUeem4vXy6EUaK", + "recNydhq15SM1Nc8n", + "rec45vliR6AiDaVmw", + "recIozhMGB6WwBdmx", + "recb9LQnoNwZR1lJN", + "recCRLjpSO3ddMXiL", + "rec9igOVcmimT3Y9L", + "rec6aChhNw7tancKN", + "recdC6OoGlEPbJ3h8", + "recOQ2D1sPlO1LC4t" + ], + "Status (from Actor)": [ + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress" + ], + "Status Rollup (from Actor)": 128 + } + }, + "fields": { + "Name": "Movie-1", + "Notes": "Good", + "Status": "Todo", + "Done": true, + "Tags": [ + "Jan" + ], + "Date": "2022-06-01", + "Phone": "123123123", + "Email": "a@b.com", + "URL": "www.a.com", + "Number": 1, + "Value": 1, + "Percent": 0.01, + "Duration": 60, + "Rating": 1, + "Calculation": 248.04, + "Actor": [ + "recHF6ZtxyTKFZIf9", + "rec337y4i19Bc2OSI", + "rec0GOZWXOGLLiykQ", + "recgjCe9RbaymMdiN", + "recVCh2XGcVi59SXV", + "rechydeoKFxr1a4XP", + "recFT3n4ePuL8uYot", + "reczv5NMjux3yZmFB", + "recZ7PaS4sjeg2Yxf", + "recVZZeKqrddTn6Pe", + "recOnZcfciELmGjx1", + "recGk76vMgL6fW3ea", + "recItcezxgQNENw8x", + "recC8CayGDDjMZpEd", + "recOB7seRuOwLjp0g", + "recHnYMoL8U1HrQyY", + "rec6RrmaUXupCy9mc", + "recLRD8BHPV8hIxWe", + "reczJJ4AWGa5J2v8d", + "rectIdUq5aSUz6ZH0", + "recSLRsxNScBn5610", + "recmnwDF4EDDrMVDX", + "recTmD65r9aLpUOqu", + "recnQTMUTD7qFcX46", + "recAkkzpObSp0nBl6", + "rec8Aol4XCyUzbYm4", + "recf2JH4or0jl7B5c", + "rec4foBIt3wPdGr3x", + "recruKbdthW5YsNDf", + "rec5QcDQfZp8Sz1jm", + "recb3GCenF2uOL4hq", + "recd5rwGHkJh5rntn", + "reck9Z2W74Jve8aZJ", + "recXGsSw4fEs3njLg", + "rec4Re52CZJfbtBlF", + "rec1KEzm7pAgP9gAR", + "recx03ffx0xTpIy46", + "rechLRwOdYouGu0Ev", + "recxDWye6rkGb7mx5", + "recUAamBRzAplmdB1", + "rec0Xt82WHYpvqsuR", + "recWi2YTm7YMu4ThT", + "recm0dvwScejYal3g", + "recaGHGpGVuAs9WyH", + "reclFv9CTC3uPyajU", + "recjQxQwPvMtcHXYm", + "recROj25L2pDcrPd5", + "recVnZ9JJA0JOY8F9", + "rec0olgwsDVG0JQce", + "recoMBjRcJTxeg8QT", + "reclOUmBuUI2qlsjk", + "recN9q2iKnlPAd6WO", + "recJMGnuXpWaUqDW1", + "recfEdPY3TzUUkLTD", + "recOnazU5kf9OqQaR", + "rec8spbeeptRkTwI2", + "recNRXqmiaezz5S0q", + "rec2a5vv4j8HPlvl3", + "recYDCAnL8kc7Nykz", + "rec2K7kxGyA22OEXL", + "rec4SCNu8JR2hgtho", + "reckqzyxcJAvKQNzQ", + "recMUaqN1gmCKlp7b", + "rec1Z5OM0jsTiNCBK", + "recNk2Yp3vM8AgHI5", + "recUVNIgnUw4ptKnZ", + "recHhMtpN2wfSEMHw", + "recAnNQ8UN0KLwYCq", + "rec86NVuZaUA8tLHm", + "recCtFNiJbVgfGsHT", + "recxPMNXTYYyvADzO", + "recsJBFU28TmwaNCQ", + "recFmTKVp4rz4nOBD", + "recdRTwLsPHuKwWsT", + "recm9ASi6H2s3gv3y", + "recbWNyIOvqryshGl", + "recwk9Nzp7ah6X7Kn", + "recGcbwKYAwciQM4C", + "recDaofOTvuRvI1pr", + "recOx2XKWOkAq2qPA", + "recnhw2lM7tzaHAsF", + "recsEpQxbmydcIIkR", + "rechCRF0dRijW1KwV", + "recKFbGbAWHmNggbY", + "recWusbxFCdIrmM6s", + "recfySCJJBA4X3DFk", + "recnwttKkvqklJenW", + "reczn8vfg579HZ2yi", + "recIJF4xTafBDQnjc", + "recgp3aTnqZk9PK4P", + "recvmVSWTF1bsC9Xx", + "recWtyv4YElGJrKk2", + "recPMXTd653F1VemE", + "recv0sFzxriYXODWl", + "recb7hRShr26MYsV3", + "reclN3ip7cNP8djR5", + "recsRMDjXsPBw60AZ", + "recvkU85tMv1rCJQF", + "recR3RO50q16Xe8yX", + "recfgN5PY80xWoQWv", + "rec3lQEaUEiKZqtz4", + "recDF2KCpnNeChhlk", + "rect9kzlRMc12Mvi8", + "recAFnq5rEHIHXbMm", + "recEOhFGsGeZGosYQ", + "recJfrPbGmoUgFXaP", + "recXyaklZivud9LCw", + "recYKZYyHVWfGeH51", + "recirWAgCAgRaJRqY", + "recc3Qtmjv3qUmqXX", + "recfy4MJmjF1En3ni", + "recIhywTbygbQQgbN", + "recD6a4sCqt8TiR8Q", + "reczyMVGQs0YIw6lw", + "recVv1dc7Fs9F0sMB", + "recLSReM55Y1toCWG", + "recSKn79mRptU7ICJ", + "recfYrDQdv9JnlNrO", + "recqUeem4vXy6EUaK", + "recNydhq15SM1Nc8n", + "rec45vliR6AiDaVmw", + "recIozhMGB6WwBdmx", + "recb9LQnoNwZR1lJN", + "recCRLjpSO3ddMXiL", + "rec9igOVcmimT3Y9L", + "rec6aChhNw7tancKN", + "recdC6OoGlEPbJ3h8", + "recOQ2D1sPlO1LC4t" + ], + "Status (from Actor)": [ + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress", + "Todo", + "In progress" + ], + "Status Rollup (from Actor)": 128 + } + } + ] + } +] \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Producer.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Producer.json new file mode 100644 index 0000000000..fa77146c04 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/Producer.json @@ -0,0 +1,81 @@ +[ + { + "records": [ + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Producer" + }, + "id": "rec7CflqABElKe2iz", + "_rawJson": { + "id": "rec7CflqABElKe2iz", + "createdTime": "2022-06-04T10:21:14.000Z", + "fields": { + "Name": "P2", + "Notes": "Notes of P2", + "Status": "In progress" + } + }, + "fields": { + "Name": "P2", + "Notes": "Notes of P2", + "Status": "In progress" + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Producer" + }, + "id": "rectTeNHuBbaFBjAv", + "_rawJson": { + "id": "rectTeNHuBbaFBjAv", + "createdTime": "2022-06-04T10:21:14.000Z", + "fields": { + "Name": "P1", + "Notes": "Notes of P1", + "Status": "Todo" + } + }, + "fields": { + "Name": "P1", + "Notes": "Notes of P1", + "Status": "Todo" + } + }, + { + "_table": { + "_base": { + "_airtable": {}, + "_id": "apprb2mFeIlQitU0o" + }, + "id": null, + "name": "Producer" + }, + "id": "recxenRrH5sVUoV8M", + "_rawJson": { + "id": "recxenRrH5sVUoV8M", + "createdTime": "2022-06-04T10:21:14.000Z", + "fields": { + "Name": "P3", + "Notes": "Notes of P3", + "Status": "Done" + } + }, + "fields": { + "Name": "P3", + "Notes": "Notes of P3", + "Status": "Done" + } + } + ] + } +] \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/index.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/index.ts new file mode 100644 index 0000000000..7f9bf7f0a6 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponseData/index.ts @@ -0,0 +1,9 @@ +import ActorData from './Actor.json'; +import FilmData from './Film.json'; +import ProducerData from './Producer.json'; + +export const mockResponseData = { + Actor: ActorData, + Film: FilmData, + Producer: ProducerData, +}; diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/index.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/index.ts new file mode 100644 index 0000000000..6d46c940dd --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/index.ts @@ -0,0 +1,38 @@ +export { + responseData as initializeHtml, + responseHeaders as initializeHeader, +} from './initialize'; +export { responseData as readResponse } from './read'; +import readView_viw5f7BhLA3OkthNv from './readView_viw5f7BhLA3OkthNv.json'; +import readView_viw9HVTL3HmZ3NCDd from './readView_viw9HVTL3HmZ3NCDd.json'; +import readView_viwsF12Zep2IrUQ4L from './readView_viwsF12Zep2IrUQ4L.json'; +import readView_viwc6YeYMlRUFJUYa from './readView_viwc6YeYMlRUFJUYa.json'; +import readView_viwvu6dBtJcPFvl4b from './readView_viwvu6dBtJcPFvl4b.json'; +import readView_viwebeyBYaiCnNwwO from './readView_viwebeyBYaiCnNwwO.json'; +import readView_viwWiQnKWgbL2TGLw from './readView_viwWiQnKWgbL2TGLw.json'; +import readView_viwMKGcEPNkD797BF from './readView_viwMKGcEPNkD797BF.json'; +import readView_viwWYcqdMbeOx3Eg3 from './readView_viwWYcqdMbeOx3Eg3.json'; +import readView_viw8p8zWYmN4Kwine from './readView_viw8p8zWYmN4Kwine.json'; +import readView_viwqB059qatxSF8tI from './readView_viwqB059qatxSF8tI.json'; +import readView_viwXfVqIcM25FVTbd from './readView_viwXfVqIcM25FVTbd.json'; +import readView_viw8Xse051lREItSC from './readView_viw8Xse051lREItSC.json'; +import readView_viwRRK2UljiQB3kko from './readView_viwRRK2UljiQB3kko.json'; +import readView_viwZnwvKkOBnDqpul from './readView_viwZnwvKkOBnDqpul.json'; + +export const viewsResponse = { + viw5f7BhLA3OkthNv: { data: readView_viw5f7BhLA3OkthNv }, + viw9HVTL3HmZ3NCDd: { data: readView_viw9HVTL3HmZ3NCDd }, + viwsF12Zep2IrUQ4L: { data: readView_viwsF12Zep2IrUQ4L }, + viwc6YeYMlRUFJUYa: { data: readView_viwc6YeYMlRUFJUYa }, + viwvu6dBtJcPFvl4b: { data: readView_viwvu6dBtJcPFvl4b }, + viwebeyBYaiCnNwwO: { data: readView_viwebeyBYaiCnNwwO }, + viwWiQnKWgbL2TGLw: { data: readView_viwWiQnKWgbL2TGLw }, + viwMKGcEPNkD797BF: { data: readView_viwMKGcEPNkD797BF }, + viwWYcqdMbeOx3Eg3: { data: readView_viwWYcqdMbeOx3Eg3 }, + viw8p8zWYmN4Kwine: { data: readView_viw8p8zWYmN4Kwine }, + viwqB059qatxSF8tI: { data: readView_viwqB059qatxSF8tI }, + viwXfVqIcM25FVTbd: { data: readView_viwXfVqIcM25FVTbd }, + viw8Xse051lREItSC: { data: readView_viw8Xse051lREItSC }, + viwRRK2UljiQB3kko: { data: readView_viwRRK2UljiQB3kko }, + viwZnwvKkOBnDqpul: { data: readView_viwZnwvKkOBnDqpul }, +}; diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/initialize.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/initialize.ts new file mode 100644 index 0000000000..87affc74d0 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/initialize.ts @@ -0,0 +1,470 @@ +export const responseData = ` + + +Airtable - CyImportTest + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Drag to adjust frozen columns
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Alert

+
Lorem ipsum
+
+
Okay
+
+
+
+
+
+
+
+ +
+
`; + +export const responseHeaders = { + 'set-cookie': [ + 'AWSALBTG=cSE30Oqn2dsVOD04mkBx3H99iDLFXbGNpZfu/ynmrYGrQ6Tgsv5zJ56cLrZhqHYtbSB9bKoIYlsALlxOGFIvZHg7IpyDyelU7h3FX6LF/AV5ko7el2kjgHjLPdkd2hYYxr5bEfaRrSvzpa7yMYEExMC974aRKwRUTNF/resK0VUOiP3fxWU=; Expires=Thu, 29 Jan 2026 06:13:18 GMT; Path=/', + 'AWSALBTGCORS=cSE30Oqn2dsVOD04mkBx3H99iDLFXbGNpZfu/ynmrYGrQ6Tgsv5zJ56cLrZhqHYtbSB9bKoIYlsALlxOGFIvZHg7IpyDyelU7h3FX6LF/AV5ko7el2kjgHjLPdkd2hYYxr5bEfaRrSvzpa7yMYEExMC974aRKwRUTNF/resK0VUOiP3fxWU=; Expires=Thu, 29 Jan 2026 06:13:18 GMT; Path=/; SameSite=None; Secure', + 'brw=brwVWpqVbHhUXl9DB; path=/; expires=Fri, 22 Jan 2027 06:13:18 GMT; domain=.airtable.com; samesite=none; secure', + 'brwConsent=opt-in; path=/; expires=Thu, 22 Jan 2026 06:18:18 GMT; domain=.airtable.com; samesite=none; secure', + 'login-status-p=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT; domain=.airtable.com; secure', + '__Host-airtable-session=eyJzZXNzaW9uSWQiOiJzZXNKTUNQYzA0ZE5LU2tjZyIsImNzcmZTZWNyZXQiOiJLRGswaXg3YlpfUHRqaHNleFJOLW1nMXAifQ==; path=/; expires=Sat, 23 Jan 2027 06:13:19 GMT; samesite=none; secure; httponly', + '__Host-airtable-session.sig=bxKEV3kJSz5UNPYRNx911F3eggOZt3SWK-BybXfEYBk; path=/; expires=Sat, 23 Jan 2027 06:13:19 GMT; samesite=none; secure; httponly', + ], +}; diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/read.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/read.ts new file mode 100644 index 0000000000..4ddf0a90a9 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/read.ts @@ -0,0 +1,4661 @@ +export const responseData = { + data: { + appBlanket: {}, + name: null, + color: null, + enterpriseColorId: null, + shouldColorBeUsedAsPageBackground: false, + icon: null, + description: null, + isRevisionHistoryEnabled: false, + sortTiebreakerKey: 'appeaC4x3aMV9DtKf', + defaultViewMutability: null, + maintenanceModeSettings: null, + sharesById: { + shrY6swT2FOy9X1Bl: { + id: 'shrY6swT2FOy9X1Bl', + modelId: 'apprb2mFeIlQitU0o', + createdByUserId: 'usr9GWEED0hhrQ3P7', + canBeCloned: true, + canBeExported: true, + includeHiddenColumns: false, + includeBlocks: true, + emailDomain: null, + hasPassword: false, + generationNumber: 0, + metadata: null, + }, + }, + workflowSectionsById: {}, + workflowTriggerConnectionsById: {}, + applicationTransactionNumber: 4, + tableSchemas: [ + { + id: 'tblcUCwSqLZGRu7FG', + name: 'Film', + primaryColumnId: 'fld6r7a0q9hodzUgY', + columns: [ + { + id: 'fld6r7a0q9hodzUgY', + name: 'Name', + type: 'text', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fld6IgZRozMKeFyc5', + name: 'Notes', + type: 'multilineText', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldqMqzYMQ7i85g5O', + name: 'Attachments', + type: 'multipleAttachment', + typeOptions: { + unreversed: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldlEkObSXpshw2wk', + name: 'Status', + type: 'select', + typeOptions: { + choices: { + selB88mIG48gDkyyi: { + id: 'selB88mIG48gDkyyi', + name: 'Todo', + color: 'red', + }, + selLdfWbEZbfEieY1: { + id: 'selLdfWbEZbfEieY1', + name: 'In progress', + color: 'yellow', + }, + selkIsEUrlTxcnMUB: { + id: 'selkIsEUrlTxcnMUB', + name: 'Done', + color: 'green', + }, + }, + choiceOrder: [ + 'selB88mIG48gDkyyi', + 'selLdfWbEZbfEieY1', + 'selkIsEUrlTxcnMUB', + ], + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldSx61dqgUzHTn1l', + name: 'Done', + type: 'checkbox', + typeOptions: { + color: 'green', + icon: 'check', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldH7RPO1Ik2ienk7', + name: 'Tags', + type: 'multiSelect', + typeOptions: { + choiceOrder: [ + 'selaJa1G5A3GDBYe1', + 'selBdTMOIeHQWDzJo', + 'selfI1gYUGdHPpxn8', + 'sel4AqJn6lj1NBbzz', + 'selQeCSXh62SW1hTc', + 'selTFILiTsyI8Jfn0', + 'selBGm0lj7h96rM9L', + 'selSD99a6a2xEb83x', + 'sellFaDt7It7KMvAL', + 'selYusIsmYi4Z7UzS', + 'selARkRtFX7vRFlya', + 'selAwfYRRsKMug7Fv', + ], + choices: { + selaJa1G5A3GDBYe1: { + id: 'selaJa1G5A3GDBYe1', + color: 'blue', + name: 'Jan', + }, + selBdTMOIeHQWDzJo: { + id: 'selBdTMOIeHQWDzJo', + color: 'cyan', + name: 'Feb', + }, + selfI1gYUGdHPpxn8: { + id: 'selfI1gYUGdHPpxn8', + color: 'teal', + name: 'Mar', + }, + sel4AqJn6lj1NBbzz: { + id: 'sel4AqJn6lj1NBbzz', + color: 'green', + name: 'Apr', + }, + selQeCSXh62SW1hTc: { + id: 'selQeCSXh62SW1hTc', + color: 'yellow', + name: 'May', + }, + selTFILiTsyI8Jfn0: { + id: 'selTFILiTsyI8Jfn0', + color: 'orange', + name: 'Jun', + }, + selBGm0lj7h96rM9L: { + id: 'selBGm0lj7h96rM9L', + color: 'red', + name: 'Jul', + }, + selSD99a6a2xEb83x: { + id: 'selSD99a6a2xEb83x', + color: 'pink', + name: 'Aug', + }, + sellFaDt7It7KMvAL: { + id: 'sellFaDt7It7KMvAL', + color: 'purple', + name: 'Sep', + }, + selYusIsmYi4Z7UzS: { + id: 'selYusIsmYi4Z7UzS', + color: 'gray', + name: 'Oct', + }, + selARkRtFX7vRFlya: { + id: 'selARkRtFX7vRFlya', + color: 'blue', + name: 'Nov', + }, + selAwfYRRsKMug7Fv: { + id: 'selAwfYRRsKMug7Fv', + color: 'cyan', + name: 'Dec', + }, + }, + disableColors: false, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldqSMGqzoIKvexVL', + name: 'Date', + type: 'date', + typeOptions: { + isDateTime: false, + dateFormat: 'Local', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldC1wGc9klzZw8nE', + name: 'Phone', + type: 'phone', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldpGVOU1gA9CZUP9', + name: 'Email', + type: 'text', + typeOptions: { + validatorName: 'email', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldg6nJJBJAxGnb8m', + name: 'URL', + type: 'text', + typeOptions: { + validatorName: 'url', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldBvDdsV1k24yKDu', + name: 'Number', + type: 'number', + typeOptions: { + format: 'decimal', + precision: 1, + negative: false, + validatorName: 'positive', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fld2cA23dqfpiQ37p', + name: 'Value', + type: 'number', + typeOptions: { + format: 'currency', + precision: 2, + symbol: '$', + negative: false, + validatorName: 'positive', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldlebEyEK11MAXqP', + name: 'Percent', + type: 'number', + typeOptions: { + format: 'percentV2', + precision: 0, + negative: false, + validatorName: 'positive', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fld62jI4iMGIWBuAH', + name: 'Duration', + type: 'number', + typeOptions: { + format: 'duration', + durationFormat: 'h:mm', + negative: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldwMZogQefTVfwfT', + name: 'Rating', + type: 'rating', + typeOptions: { + color: 'yellow', + icon: 'star', + max: 5, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldmVzyNoFUOktFba', + name: 'Calculation', + type: 'formula', + typeOptions: { + formulaTextParsed: + 'SUM(column_value_fldBvDdsV1k24yKDu, column_value_fld2cA23dqfpiQ37p, column_value_fldlebEyEK11MAXqP, column_value_fld62jI4iMGIWBuAH) * 100 / 25', + dependencies: { + referencedColumnIdsForValue: [ + 'fldBvDdsV1k24yKDu', + 'fld2cA23dqfpiQ37p', + 'fldlebEyEK11MAXqP', + 'fld62jI4iMGIWBuAH', + ], + referencedFormulaFunctions: ['SUM', 'multiply', 'divide'], + dependsOnCurrentRow: true, + }, + resultType: 'number', + resultIsArray: false, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldoQ9fOkIU5Mhrtp', + name: 'Actor', + type: 'foreignKey', + typeOptions: { + foreignTableId: 'tblRGcmllRGzkz5p6', + relationship: 'many', + unreversed: true, + symmetricColumnId: 'fldrqN5ajLiEwNy0t', + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldBAkWGWoEQaM5uK', + name: 'Status (from Actor)', + type: 'lookup', + typeOptions: { + relationColumnId: 'fldoQ9fOkIU5Mhrtp', + foreignTableRollupColumnId: 'fldXxq8VN0UhMy1xR', + canUseSelectResultType: true, + choices: { + selo9oxLEpJnKvdCw: { + id: 'selo9oxLEpJnKvdCw', + name: 'Todo', + color: 'red', + }, + selo0u9rf3ESDiEGC: { + id: 'selo0u9rf3ESDiEGC', + name: 'In progress', + color: 'yellow', + }, + selDkYEL82PbLt73w: { + id: 'selDkYEL82PbLt73w', + name: 'Done', + color: 'green', + }, + }, + choiceOrder: [ + 'selo9oxLEpJnKvdCw', + 'selo0u9rf3ESDiEGC', + 'selDkYEL82PbLt73w', + ], + dependencies: { + referencedColumnIdsForValue: [ + 'fldoQ9fOkIU5Mhrtp', + 'fldXxq8VN0UhMy1xR', + ], + }, + resultType: 'select', + resultIsArray: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldrUlRlnWNRHa5Wn', + name: 'Status Rollup (from Actor)', + type: 'rollup', + typeOptions: { + relationColumnId: 'fldoQ9fOkIU5Mhrtp', + foreignTableRollupColumnId: 'flduxFfvDassOS6sm', + formulaTextParsed: 'COUNTALL(values)', + dependencies: { + referencedColumnIdsForValue: [ + 'fldoQ9fOkIU5Mhrtp', + 'flduxFfvDassOS6sm', + ], + referencedFormulaFunctions: ['COUNTALL'], + dependsOnCurrentRow: true, + }, + resultType: 'number', + resultIsArray: false, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + meaningfulColumnOrder: [ + { + columnId: 'fld6r7a0q9hodzUgY', + visibility: true, + }, + { + columnId: 'fld6IgZRozMKeFyc5', + visibility: true, + }, + { + columnId: 'fldqMqzYMQ7i85g5O', + visibility: false, + }, + { + columnId: 'fldlEkObSXpshw2wk', + visibility: true, + }, + { + columnId: 'fldH7RPO1Ik2ienk7', + visibility: true, + width: 180, + }, + { + columnId: 'fldSx61dqgUzHTn1l', + visibility: true, + }, + { + columnId: 'fldqSMGqzoIKvexVL', + visibility: true, + }, + { + columnId: 'fldC1wGc9klzZw8nE', + visibility: true, + }, + { + columnId: 'fldpGVOU1gA9CZUP9', + visibility: true, + }, + { + columnId: 'fldg6nJJBJAxGnb8m', + visibility: true, + }, + { + columnId: 'fldBvDdsV1k24yKDu', + visibility: true, + width: 168, + }, + { + columnId: 'fld2cA23dqfpiQ37p', + visibility: true, + }, + { + columnId: 'fldlebEyEK11MAXqP', + visibility: true, + }, + { + columnId: 'fld62jI4iMGIWBuAH', + visibility: true, + }, + { + columnId: 'fldwMZogQefTVfwfT', + visibility: true, + }, + { + columnId: 'fldmVzyNoFUOktFba', + visibility: true, + }, + { + columnId: 'fldoQ9fOkIU5Mhrtp', + visibility: true, + width: 252, + }, + { + columnId: 'fldBAkWGWoEQaM5uK', + visibility: true, + }, + { + columnId: 'fldrUlRlnWNRHa5Wn', + visibility: true, + }, + ], + views: [ + { + id: 'viwebeyBYaiCnNwwO', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwXfVqIcM25FVTbd', + name: 'FormTitle', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + viewOrder: ['viwebeyBYaiCnNwwO', 'viwXfVqIcM25FVTbd'], + viewsById: { + viwebeyBYaiCnNwwO: { + id: 'viwebeyBYaiCnNwwO', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwXfVqIcM25FVTbd: { + id: 'viwXfVqIcM25FVTbd', + name: 'FormTitle', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + }, + viewSectionsById: {}, + rowTemplatesById: {}, + schemaChecksum: + '7a0236dd572ca6eea33ffac2438b88b2ab8b5ec390fc1b326b686b59ca87ab93', + dateDependencySettings: null, + rowUnit: null, + isHiddenFromSwitcher: false, + columnSetById: {}, + }, + { + id: 'tblRGcmllRGzkz5p6', + name: 'Actor', + primaryColumnId: 'flduxFfvDassOS6sm', + columns: [ + { + id: 'flduxFfvDassOS6sm', + name: 'Name', + type: 'text', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldBPTD14QIXSNarb', + name: 'Notes', + type: 'multilineText', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldn3XBgPr3SEbsXv', + name: 'Attachments', + type: 'multipleAttachment', + typeOptions: { + unreversed: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldXxq8VN0UhMy1xR', + name: 'Status', + type: 'select', + typeOptions: { + choices: { + selo9oxLEpJnKvdCw: { + id: 'selo9oxLEpJnKvdCw', + name: 'Todo', + color: 'red', + }, + selo0u9rf3ESDiEGC: { + id: 'selo0u9rf3ESDiEGC', + name: 'In progress', + color: 'yellow', + }, + selDkYEL82PbLt73w: { + id: 'selDkYEL82PbLt73w', + name: 'Done', + color: 'green', + }, + }, + choiceOrder: [ + 'selo9oxLEpJnKvdCw', + 'selo0u9rf3ESDiEGC', + 'selDkYEL82PbLt73w', + ], + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldrqN5ajLiEwNy0t', + name: 'Film', + type: 'foreignKey', + typeOptions: { + foreignTableId: 'tblcUCwSqLZGRu7FG', + symmetricColumnId: 'fldoQ9fOkIU5Mhrtp', + relationship: 'many', + unreversed: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + meaningfulColumnOrder: [ + { + columnId: 'flduxFfvDassOS6sm', + visibility: true, + }, + { + columnId: 'fldBPTD14QIXSNarb', + visibility: true, + }, + { + columnId: 'fldn3XBgPr3SEbsXv', + visibility: true, + }, + { + columnId: 'fldXxq8VN0UhMy1xR', + visibility: true, + }, + { + columnId: 'fldrqN5ajLiEwNy0t', + visibility: true, + }, + ], + views: [ + { + id: 'viwqB059qatxSF8tI', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viw8p8zWYmN4Kwine', + name: 'Filter&Sort', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + viewOrder: ['viwqB059qatxSF8tI', 'viw8p8zWYmN4Kwine'], + viewsById: { + viwqB059qatxSF8tI: { + id: 'viwqB059qatxSF8tI', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viw8p8zWYmN4Kwine: { + id: 'viw8p8zWYmN4Kwine', + name: 'Filter&Sort', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + }, + viewSectionsById: {}, + rowTemplatesById: {}, + schemaChecksum: + '4eb8ace8331d3127315b918b96cbe4494ef891826c88e22ce9cbbcf46834f8a7', + dateDependencySettings: null, + rowUnit: null, + isHiddenFromSwitcher: false, + columnSetById: {}, + }, + { + id: 'tblp9k6RJTAAEeoRy', + name: 'Producer', + primaryColumnId: 'fldaKGmXYDqycI6FP', + columns: [ + { + id: 'fldaKGmXYDqycI6FP', + name: 'Name', + type: 'text', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldJ4MZo6XbVBK8Cm', + name: 'Notes', + type: 'multilineText', + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldeuBlvCNuVLTpag', + name: 'Attachments', + type: 'multipleAttachment', + typeOptions: { + unreversed: true, + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'fldi3aP7nI5d7Th0S', + name: 'Status', + type: 'select', + typeOptions: { + choices: { + selWtsuJeVBHLHGoQ: { + id: 'selWtsuJeVBHLHGoQ', + name: 'Todo', + color: 'red', + }, + selI41dgnSlWTTkr4: { + id: 'selI41dgnSlWTTkr4', + name: 'In progress', + color: 'yellow', + }, + selSsal85SEQEX4x9: { + id: 'selSsal85SEQEX4x9', + name: 'Done', + color: 'green', + }, + }, + choiceOrder: [ + 'selWtsuJeVBHLHGoQ', + 'selI41dgnSlWTTkr4', + 'selSsal85SEQEX4x9', + ], + }, + initialCreatedByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + meaningfulColumnOrder: [ + { + columnId: 'fldaKGmXYDqycI6FP', + visibility: true, + }, + { + columnId: 'fldJ4MZo6XbVBK8Cm', + visibility: true, + }, + { + columnId: 'fldeuBlvCNuVLTpag', + visibility: false, + }, + { + columnId: 'fldi3aP7nI5d7Th0S', + visibility: true, + }, + ], + views: [ + { + id: 'viw5f7BhLA3OkthNv', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwRRK2UljiQB3kko', + name: 'Grid 2', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwsF12Zep2IrUQ4L', + name: 'Grid 3', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viw9HVTL3HmZ3NCDd', + name: 'Grid 4', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwMKGcEPNkD797BF', + name: 'Form', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwc6YeYMlRUFJUYa', + name: 'Form 2', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwWYcqdMbeOx3Eg3', + name: 'Form 3', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwZnwvKkOBnDqpul', + name: 'Form 4', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viw8Xse051lREItSC', + name: 'Gallery', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwvu6dBtJcPFvl4b', + name: 'Gallery 2', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + { + id: 'viwWiQnKWgbL2TGLw', + name: 'Gallery 3', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + ], + viewOrder: [ + 'viw5f7BhLA3OkthNv', + 'viwRRK2UljiQB3kko', + 'viwsF12Zep2IrUQ4L', + 'viw9HVTL3HmZ3NCDd', + 'viwMKGcEPNkD797BF', + 'viwc6YeYMlRUFJUYa', + 'viwWYcqdMbeOx3Eg3', + 'viwZnwvKkOBnDqpul', + 'viw8Xse051lREItSC', + 'viwvu6dBtJcPFvl4b', + 'viwWiQnKWgbL2TGLw', + ], + viewsById: { + viw5f7BhLA3OkthNv: { + id: 'viw5f7BhLA3OkthNv', + name: 'Grid view', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwRRK2UljiQB3kko: { + id: 'viwRRK2UljiQB3kko', + name: 'Grid 2', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwsF12Zep2IrUQ4L: { + id: 'viwsF12Zep2IrUQ4L', + name: 'Grid 3', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viw9HVTL3HmZ3NCDd: { + id: 'viw9HVTL3HmZ3NCDd', + name: 'Grid 4', + type: 'grid', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwMKGcEPNkD797BF: { + id: 'viwMKGcEPNkD797BF', + name: 'Form', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwc6YeYMlRUFJUYa: { + id: 'viwc6YeYMlRUFJUYa', + name: 'Form 2', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwWYcqdMbeOx3Eg3: { + id: 'viwWYcqdMbeOx3Eg3', + name: 'Form 3', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwZnwvKkOBnDqpul: { + id: 'viwZnwvKkOBnDqpul', + name: 'Form 4', + type: 'form', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viw8Xse051lREItSC: { + id: 'viw8Xse051lREItSC', + name: 'Gallery', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwvu6dBtJcPFvl4b: { + id: 'viwvu6dBtJcPFvl4b', + name: 'Gallery 2', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + viwWiQnKWgbL2TGLw: { + id: 'viwWiQnKWgbL2TGLw', + name: 'Gallery 3', + type: 'gallery', + personalForUserId: null, + description: null, + createdByUserId: 'usr9GWEED0hhrQ3P7', + }, + }, + viewSectionsById: {}, + rowTemplatesById: {}, + schemaChecksum: + 'dd6ae0e1f9763f0d67a6409e8ce35e67a7b978fa94b70134bae84bb1e35f5542', + dateDependencySettings: null, + rowUnit: null, + isHiddenFromSwitcher: false, + columnSetById: {}, + }, + ], + hasBlockInstallations: false, + packageInstallationsById: {}, + featureKitInstallationById: {}, + applicationAdminFlags: { + UPDATE_PRIMITIVE_CELL_THROTTLE_MS: null, + UPDATE_RICH_TEXT_CELL_THROTTLE_MS: null, + MAX_WORKFLOWS_PER_APPLICATION: null, + MAX_SYNC_SOURCES_PER_APPLICATION: null, + MAX_SYNC_SOURCES_PER_TABLE: null, + MAX_SYNCED_TABLES_PER_APPLICATION: null, + CUSTOM_MAX_NUM_COLUMNS_PER_TABLE: null, + CUSTOM_MAX_NUM_ROWS_PER_TABLE: null, + DENYLISTED_PAGE_BUNDLES_FOR_PAGE_BUNDLE_COLLABORATORS: null, + MAX_ROW_TEMPLATES_PER_APPLICATION: null, + APPLICATION_AI_AUTOMATIC_GENERATION_RECORD_COUNT_LIMIT: null, + APPLICATION_AI_BULK_GENERATION_RECORD_COUNT_LIMIT: null, + WORKFLOW_FIND_RECORDS_MAX_LIMIT: null, + WORKFLOW_EXECUTION_READ_WORKFLOW_ACTION_EXECUTION_BATCH_SIZE: null, + APPLICATION_AI_QA_IFRAME_URL: null, + AUTO_REFRESH_TIMEOUT_MS: null, + ENABLE_PRODUCT_CENTRAL: null, + APPLICATION_DEPENDENCY_GRAPH_THROTTLE_MS: null, + }, + pageLayoutSchemaVersion: 26, + pageSections: [], + pageBundles: [], + unparentedPageMetadata: [], + canUserModifyAllUnparentedPages: false, + portal: null, + isCurrentUserPortalPageBundleCollaborator: false, + uploadedUserContentCdnSetting: { + applicationScopedAuthMode: 'private', + }, + applicationV2TargetedFeatureFlagClientConfiguration: { + dateSparklineDisplay: { + trafficLevel: 0, + }, + blockModelBridgeLongWaitUntilReadyBeforeWriteTimeout: { + trafficLevel: 0, + }, + aiFieldMatching: { + trafficLevel: 100, + }, + aiAutomaticFieldMatching: { + trafficLevel: 0, + }, + applicationChangeHookCreateSyncHooksWithSpecificationPayloadEnabled: { + trafficLevel: 100, + }, + externalTableSyncSkipRealTimeSyncForSyncWithFieldTypeCustomizationToLinkedRecord: + { + trafficLevel: 100, + }, + externalTableSyncRealTimeSyncAllowSchemaUpdatesFromResolution: { + trafficLevel: 100, + }, + syncLinkedRecordsCellUpdateOptimization: { + trafficLevel: 100, + }, + canCreateRelationFieldsSourcedByCollaboratorField: { + trafficLevel: 0, + }, + enableExternalTableSyncInfoManagerForAuthoritativeSourceWrites: { + trafficLevel: 0, + }, + externalTableSyncThreadedEnqueue: { + trafficLevel: 100, + }, + attachmentsAuthV3ShouldUseSignedAuthV5Urls: { + trafficLevel: 0, + }, + attachmentsAuthV3: { + trafficLevel: 0, + }, + eudrAttachmentBoundaryCrossings: { + trafficLevel: 0, + }, + externalTableSyncPingSourceBasesFromTarget: { + trafficLevel: 100, + }, + changeHooksOnUelLogActions: { + trafficLevel: 0, + }, + performChangeHookProcessingOnUelPath: { + trafficLevel: 100, + }, + applicationSearchMultiTokenBooleanSearch: { + trafficLevel: 100, + }, + applicationSearchMultiTokenBooleanSearchAllowFuzziness: { + trafficLevel: 0, + }, + twoWaySyncServerSideTransparentEditingNonBlocking: { + trafficLevel: 100, + }, + twoWaySyncCreateDelete: { + trafficLevel: 100, + }, + twoWaySyncPricingGating: { + trafficLevel: 100, + }, + enforceMaxSourceCellCountForEnablingTwoWaySync: { + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + externalTableSyncQuerySchemaInIncrementalSync: { + trafficLevel: 100, + }, + revisionHistoryErrorLogging: { + trafficLevel: 0, + }, + workflowsSlackShowPermalinkInExpressionBuilder: { + trafficLevel: 0, + }, + workflowsFindRecordsUserDefinedLimits: { + trafficLevel: 0, + }, + dateDependenciesRevisionHistory: { + trafficLevel: 100, + }, + disableUsageInsightsOneYearOption: { + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + tableDeleteOrphanCascadeForApplication: { + trafficLevel: 0, + }, + disabledWorkflowOnSchemaChangeSuggestion: { + trafficLevel: 100, + }, + syncFailureSuggestion: { + trafficLevel: 100, + }, + unusedViewsSuggestion: { + trafficLevel: 100, + }, + unusedSelectChoicesSuggestion: { + trafficLevel: 0, + }, + unifiedEventLog: { + trafficLevel: 100, + }, + unifiedEventLogPublishingBlockDbCommits: { + trafficLevel: 100, + }, + projectReadDataForRowCards: { + trafficLevel: 0, + }, + threadSafeStoreUseLargerMapSize: { + trafficLevel: 0, + }, + clientSideProfilingForApplication: { + trafficLevel: 0, + }, + modelNamePreserveWhitespace: { + trafficLevel: 100, + }, + }, + applicationV2FeatureFlagClientContext: { + applicationId: 'apprb2mFeIlQitU0o', + flagNameToPrecalculatedVariant: { + dateSparklineDisplay: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + blockModelBridgeLongWaitUntilReadyBeforeWriteTimeout: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiFieldMatching: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAutomaticFieldMatching: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + applicationChangeHookCreateSyncHooksWithSpecificationPayloadEnabled: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncSkipRealTimeSyncForSyncWithFieldTypeCustomizationToLinkedRecord: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncRealTimeSyncAllowSchemaUpdatesFromResolution: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + syncLinkedRecordsCellUpdateOptimization: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + canCreateRelationFieldsSourcedByCollaboratorField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableExternalTableSyncInfoManagerForAuthoritativeSourceWrites: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + externalTableSyncThreadedEnqueue: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + attachmentsAuthV3ShouldUseSignedAuthV5Urls: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + attachmentsAuthV3: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + eudrAttachmentBoundaryCrossings: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + externalTableSyncPingSourceBasesFromTarget: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + changeHooksOnUelLogActions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + performChangeHookProcessingOnUelPath: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + applicationSearchMultiTokenBooleanSearch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + applicationSearchMultiTokenBooleanSearchAllowFuzziness: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + twoWaySyncServerSideTransparentEditingNonBlocking: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + twoWaySyncCreateDelete: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + twoWaySyncPricingGating: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enforceMaxSourceCellCountForEnablingTwoWaySync: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + externalTableSyncQuerySchemaInIncrementalSync: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + revisionHistoryErrorLogging: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowsSlackShowPermalinkInExpressionBuilder: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowsFindRecordsUserDefinedLimits: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + dateDependenciesRevisionHistory: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + disableUsageInsightsOneYearOption: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + tableDeleteOrphanCascadeForApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + disabledWorkflowOnSchemaChangeSuggestion: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + syncFailureSuggestion: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + unusedViewsSuggestion: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + unusedSelectChoicesSuggestion: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + unifiedEventLog: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + unifiedEventLogPublishingBlockDbCommits: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + projectReadDataForRowCards: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + threadSafeStoreUseLargerMapSize: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + clientSideProfilingForApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + modelNamePreserveWhitespace: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationV2', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + }, + }, + applicationV2EnabledFeatureNames: [ + 'aiFieldMatching', + 'applicationChangeHookCreateSyncHooksWithSpecificationPayloadEnabled', + 'externalTableSyncSkipRealTimeSyncForSyncWithFieldTypeCustomizationToLinkedRecord', + 'externalTableSyncRealTimeSyncAllowSchemaUpdatesFromResolution', + 'syncLinkedRecordsCellUpdateOptimization', + 'externalTableSyncThreadedEnqueue', + 'externalTableSyncPingSourceBasesFromTarget', + 'performChangeHookProcessingOnUelPath', + 'applicationSearchMultiTokenBooleanSearch', + 'twoWaySyncServerSideTransparentEditingNonBlocking', + 'twoWaySyncCreateDelete', + 'twoWaySyncPricingGating', + 'externalTableSyncQuerySchemaInIncrementalSync', + 'dateDependenciesRevisionHistory', + 'disabledWorkflowOnSchemaChangeSuggestion', + 'syncFailureSuggestion', + 'unusedViewsSuggestion', + 'unifiedEventLog', + 'unifiedEventLogPublishingBlockDbCommits', + 'modelNamePreserveWhitespace', + ], + applicationUnifiedFeatureFlagClientContext: { + applicationId: 'apprb2mFeIlQitU0o', + flagNameToPrecalculatedVariant: { + iCalSharedViewBestEffortAllDayColumn: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enforceHipaaComplianceCheckInIsAiEnabledForEnterpriseAsync: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + restrictPagesDataToAllEntryPagesAndReachableRowPagesInPageBundleForMobileClient: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + logUnexpectedQueryAuthorizationPageError: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + timelineShowExactStartTimeWithoutEndColumn: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + timelineViewGanttCriticalPath: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceDesignerCustomFormFieldValidation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceChartMultipleSeries: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceChartDualYAxes: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceDesignerIncreaseNumberOfLegendItemsForTopBottom: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceDesignerSupersizeRecordDetailPage: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + standaloneFormSection: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + standaloneFormReordering: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableDocExtractionInAutomations: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceDesignerGalleryAdvancedOptions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceDesignerGalleryExpandTruncatedProperties: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + cardsWidgetForDashboards: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + productCentralApplicationOverride: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + forceSolutionThemeForBase: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + allowRenamingSolution: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceDesignerDisableRuntimeOutputLiveMemo: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiEnableStreamingForCobuilder: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiPlayInterfaceLaunch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAppBuildingDocExtractionInBaseCreationModal: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + customElementCodeGenStreaming: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiCoverImageGenerationForStandaloneFormsApplicationScoped: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + cobuilderCustomizationAnthropicByDefault: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + cobuilderCustomizationGetOrderedModelListForCustomizationPromptOverridesVariant: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + cobuilderCustomizationWorkflowIteration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniUnifiedAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantCreateTableWithAi: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantRecordsEditabilityForPBC: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantAttachmentsForPBC: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantGPT41: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantUseShortenedHyperIds: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantGetSchemaTool: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantRespectReadUntrustedData: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantReturnApplicationHasPublicWriteAccess: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantConsiderSyncedDataSourcesAsPubliclyWritable: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantOptimizeQueriesWithinTable: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantEnableQuerySkippingForMatchingFilters: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantOptimizeQueries: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantExampleDataForPagesClientSideMode: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantMakeSingleGetContextForAgentRequest: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantGridArtifactStreaming: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantAdvisors: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiSpikeOmniAppDescriptions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniReportGeneration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniReportGenerationAdvancedFeatures: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniReportGenerationFeatureAwarenessCard: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniUseGpt5ForRecords: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + omniUseOpusV4P5ForQa: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniUseVercelForOpenAi: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniUseVercelForAnthropicBedrock: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniUseVercelForGemini: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantMessagePdfExport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantGridArtifactLiveBaseData: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantShouldFallBackThroughDynamicModels: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableAiChatsManagementKillSwitch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + aiFieldAgentInBaseSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantWebDataRetrieval: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiServerQaAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiServerWebChatOwnershipCheck: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiServerAgentPersistEventsToDynamo: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + omniSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniInterfaceLongTextEditor: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniRecordScopedContext: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniCellContextMenuAskOmni: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniRecordScopedContextRollout: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantAppendStreaming: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniContextualSearchEntryPoint: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniRecordAgentMarkdownSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + omniRecordAgentFineGrainedToolStreaming: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + disableEditingOfEditableSharedViews: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + linkedRecordPickerMultiSelectInRecordDetail: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + cascadingEndUserFilters: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + computedFieldDynamicFiltersInForms: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + packagePlatformVerboseLogging: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + packagesPlatformSendRealtimeLikePayloadAfterReleaseCreated: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + packagesPlatformDisableCustomizingLevelsPageElement: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + packagesPlatformDisableCustomizingQueryContainerFilters: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + packagesPlatformAllowCustomizingQueryContainerEndUserActions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + packagesPlatformAllowCustomizingQueryContainerEndUserFilters: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + packagesPlatformAllowCustomizingInboxPageElement: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + connectSingleApplicationRealtimeWebSocketToAppAirtableCom: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + interfaceExtensionsAllowOnPubliclySharedInterfacePages: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsHideTopBarOnPubliclySharedInterfacePages: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceExtensionsAllowBlockInstallationInQueryContainerPageElement: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsEnableEditability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsEnableMultiTable: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsEnableRevertToPreviousBlockVersionButtonInOmni: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsEnableAiGeneration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceExtensionsEnableDeltaEdits: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsCodeGenToolRefactor: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceExtensionsEnableImagesAsContext: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + sandboxEligibleApplications: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxPreventUndestroy: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxCopyTestOuputToSandbox: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxSkipPageDestroyIfMissing: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + sandboxCommitSchemaValidationOnRead: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + sandboxCompactColumnOrder: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxSelectivePublishing: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxSelectivePublishingFormulaChaining: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxAttemptToAutoResolveColumnDependencyCycles: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxPackages: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxV1DataExtensions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxV1InterfaceCustomExtensions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxAllowAllFieldsToBeSyncedIfPartofPackage: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxGenerateActionSequenceApiWithDisplayInfo: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxOnlyAllowApplicationMetadataUpdatesFromProductionApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxAllowDestroyingMainApplicationsWithoutDestroyingSandboxFirst: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxGenerateSignedActionSequence: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxGenerateStepsDueToSyncSourceChanges: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxRequireSignedActionSequence: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxSkipActionSequenceStalenessCheckForApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + sandboxPreviewAsInactiveCollaborators: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + openAio1ModelAvailabilityUnified: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + openAiChatGpt5P2ModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + anthropicClaudeOpus4p5ModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + gemini3ProModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + gemini3FlashModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + openAiImageGenerationModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + openAiGptImage1P5ModelAvailabilityUnified: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + openAiGptImage1MiniModelAvailabilityUnified: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + gemini2P5FlashImageModelAvailabilityUnified: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + gemini3ProImageModelAvailabilityUnified: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + gemini3ProImageResolution: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiImageGenerationAutomation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiImageGenerationAutomationBusinessEnterprise: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiImageGenerationFieldAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiImageGenerationFieldAgentBusinessEnterprise: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + googleVeo3VideoGenerationModelAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiWebImageSearchSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiWebContentGenerationFieldAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiFieldAgentConfigV2: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiLinkedRecordFieldAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiLinkedRecordFieldKeywordSearch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiCreateLinkedRecordAiFieldsFromOmni: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiFieldAgentsLogToBraintrust: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiFieldAgentGenerationTriggers: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiReduceTaskQueueEmbeddingCrudRequestPriority: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiFieldMatchingUseLlmForAutomaticMatching: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiFieldMatchingAdvancedConfiguration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiTextFieldMarkdownSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAdoptionSuggestionsInFieldContextMenu: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAutomationsLibrary: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantCreateFieldAgentCommand: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiFieldMatchingInForms: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + displayChartArtifactInAiAssistant: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + saveChartToPage: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiEnableSemanticSearch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiGenerateWorkflowActionOutputSchema: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantForBillingPlansThatIncludeAiSku: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantSupportAgent: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantLargeInputParallel: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantSuggestionGenerationV2: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantAllowBlankPageQueries: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantEnableCreditCharges: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiImageGenerationChargeAiCredits: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiImageGenerationHighInputFidelity: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + commandKRecordSearch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiVectorSearchFilteringHeuristics: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableGoogleDriveToolsInFieldAgents: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableOneDriveToolsInFieldAgents: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableJiraToolsInFieldAgents: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + useLargeDocExtractionPipeline: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + useLargeDocExtractionPipelineInAutomation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + letAiFieldReadExcelFiles: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + letAiFieldReadWebpImageFiles: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + letAiFieldReadImagesWithVisionModels: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + letAiFieldReadImagesWithVisionModelsBusinessEnterprise: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiTrimLargeApplicationSchemaInLlmPrompt: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + showOmniStopButton: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + allowEkmMilvusEmbeddingForInternalOnly: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + doubleWriteToMilvusAndLance: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + writeNewEmbeddingConfigsToMilvus: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + readEmbeddingsFromMilvus: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + forceMilvusMigration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiFinnhubAssistantAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantAirtableHelp: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantGenerateArtifactsForNonBaseData: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantVirtualTable: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiBedrockEmbeddings: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiEmbeddingsModelAutomaticCutover: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiEmbeddingConfigs: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantMultiAgentDelegationReal: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantRouterPlanning: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAssistantRouterUserClarification: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + aiAssistantBaseCollaboratorFullPermissionsInInterfaceView: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantScopedInInterfaceView: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantWithSyncInfo: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + aiAdoptionAiFieldCatalog: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantAnalyticsAvailability: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiAssistantAnalyticsFormatResponse: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiFreeGeneration: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsExecuteActionsInThread: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsEmailTrigger: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsEmailTriggerAttachments: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsEmailTriggerSkipTextToHtmlParsing: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsNestedAdvancedLogic: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsRepeatingGroupsInConditionals: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsConditionalsInConditionals: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + isAutomationPerformanceStatsEnabled: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowTriggerConnectionAvoidBaseMetadataApiCall: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsCustomScriptsSetNodeMaxOldSpaceSize: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowsDeployHistoryTab: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowsExperimentalFixForEmailInputLag: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + workflowNodeExecutionPayloadsToS3: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowExecutionPayloadsToS3: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowExecutionReleaseLeaseDuringJobResuming: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowExecutionCheckAvailableLeasesBeforeScheduling: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowWebhookInvocationPayloadsToS3: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowReducerNodeSkipInputExpressionEvaluation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + syncedLinkedRecordsSupportSelfLinkedRecords: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + levelsConfigAllowSyncedLinkedRecordColumns: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncSyncLinkedRecordsColumnEditableForSourceWithSelectionCondition: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + reconnectSyncedLinkedRecordsColumnsWhenPossibleWhenRemovingSyncs: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + externalTableSyncFixMissingAuthoritativeColumn: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncBatchOnNonEmptyCellsInCreatedRows: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncBatchOnNumberOfComparedCells: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncSkipDuplicateCreatedRows: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + externalTableSyncTimeOutUsingLastBatchStartTime: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + addExternalApiRequestBodyToDebugObj: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + disableSendToMsTeamsWorkflowActionOneOnOneMessaging: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + syncSetUmappedColumnsToDestroyedInFixers: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + processExternalTableSyncsGetEnqueueContext: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + externalTableSyncFullTableDiffInThreadedEnqueue: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + attachmentProcessingTaskUseBatchedProcessingForExperimentalUploadTypes: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + fileUploaderModalContainFocus: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + attachmentVideoHackilyTryToPlayAlways: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + numberBadgeOnAllAnnotations: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + attachmentAltText: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + attachmentAltTextEditor: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + singleSelectApprovalsVisualVariant: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + atlassianJiraTrimFieldMetadata: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + jiraV3IssueSearchValidation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + optimizeGetIssueMetadataForJiraCloud: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + applyJiraV3IssueSearchAPIForJiraCloud: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + azureDevOpsTwoWaySync: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + twoWaySyncIgnoreNoopArrayOperationsToSource: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + workflowsSlackEnableThreadedMessageSupport: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowsSlackChannelsDistributedCache: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowsOutlookEventUseHtmlForDescriptionField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowSubscribers: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + dateDependenciesDisplayDateDependencyMetadataOutsideTimelineArrows: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableSharedApplicationOrBlockAppBlanketRedaction: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + unloadApplicationDataAndUnsubcribeFromRealtimeOnSetInactive: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + portalsShareTabApplicationScoped: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbInterfacesDemo: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbBtreeMvccCollection: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + coreDbShadowValidatePrivilegesPolicyConstruction: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbPrivilegesPolicyConstruction: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + measureRecalculatorDependenciesSerialization: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + constructUniquePathPageBundlePrivileges: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + shouldEnforcePrivilegesPolicyQueryAuthorizationTimingThreshold: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + shouldUseNewExpandedForeignRowPolicyModel: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + delayLastPageRuntimeDestroy: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + skipPreloadingQueriesDuringPageNavigation: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + useImportRowsShadowboxOpForPaste: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + skipPublishingUnparentedPagesWithNoChanges: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfacePermissionAvoidFullTableScanForLookupColumn: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + interfaceDesignerIncreasedMaxNumPagesPerPageBundle: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + interfaceDesignerEndUserHideEmptyParentsMultipleLevels: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + disableNewWorkflowTemplateInstalls: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + hideWorkflowTemplateSettings: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + truncateLongForeignKeyCellEditors: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + keepForeignKeyDropdownFilterResultsAcrossAfterPopoverClose: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + commentAttachments: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + commentsQA: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + redactSyncCellHistory: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + emitCellHistoryGroupingStats: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + disableSyncCellHistoryWrites: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enforcePublicAPIBillingLimit: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + pageBundleInviteReminders: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + pageBundleInviteEmailRevamp2025: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + shareDialogSimplificationV3Base: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'winningVariant', + }, + }, + shareDialogSimplificationV4: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'winningVariant', + }, + }, + shareDialogSimplificationInterfaceEnterpriseRollout: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + implicitSorts: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + sendResponseDataWithOtRevisionForRowUpdateRichTextCellByApplyingOperation: + { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + singleApplicationRealtimeServerVerboseLogging: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + singleApplicationRealtimePopulateMultiThreadSubscriptionBuffer: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + singleApplicationRealtimeValidateMultiThreadSubscriptionBuffer: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + singleApplicationRealtimePromoteFromMultiThreadSubscriptionBuffer: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + singleApplicationRealtimeAsyncGetBroadcastablePushPayload: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + singleApplicationRealtimeEagerlyExpireSubscriptionsOnHeartbeat: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + singleApplicationRealtimeEagerlyExpireSubscriptionsOnClose: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + replicatedApplicationHandoff: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + replicatedApplicationHandoffFallbackToCoordinatedHandoff: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + replicatedCoreDbLoadingSidecar: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableReadQueriesMsgpackExperiment: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableRealtimeUpdatesPausingForReadQueries: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbSecondaryModeShadowValidationExperiment: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbSecondaryModeShadowValidationExperimentDisableTimeouts: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + useDispatchArchitecture: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + dispatchArchitectureServing: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbShadowboxDataMapperBatchWriteMode: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + logAllShadowboxOperationsPerformedInCrudRequestLogLine: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'ineligibleFromRule', + ruleType: 'enterpriseAccountIds', + }, + }, + memAppMutationSentinel: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + shouldEnablePreviewModeForViewsInApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + shouldEnablePreviewModeForExperimentalViewTypesInApplication: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + backendSearchForPreviewMode: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableSearchHighlighting: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + previewModeThreshold: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'fiveThousand', + reason: 'winningVariant', + }, + }, + previewModeRowLimit: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'oneThousand', + reason: 'winningVariant', + }, + }, + foreignRowCustomDisplayNames: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + twoWaySyncCollaboratorField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + featureKitsAllowSubstitutions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + featureKitsEkmEncryptionForS3Data: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + searchAllVisibleColumnsInTableListRowsQuery: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + realTimeSyncTwoWaySyncPermissions: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + loadCellsByColumnInsteadOfByTable: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + realTimeSyncSourceTableLock: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + realTimeSyncEvaluateCellsWithNewSchema: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + solutionsCustomizations: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + feedbackSentimentChart: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + solutionsPromptAdditionalContext: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + realTimeSyncConvertSourceDiffToTargetDiffWithNewSchema: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + realTimeSyncChangeHookPayloadLengthCheckFix: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + googleCalendarSyncEnableEventTypeField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + syncCollaboratorAttributionAsCollaboratorField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + disableWorkflowExpressionBuilderDeepDive: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowExpressionBuilderUseCache: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowFanoutDecisionSkipLookupCellConversion: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowCustomScriptRetryOnUserScriptTimeout: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowExecutionLoadPayloadInBatch: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workflowExecutionJobLockingDuringScheduling: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workflowExpressionEvaluationOnlyLoadBranchData: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + selfLinkedRecordBackLink: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + nestedSubtasksInLevelsView: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableCustomGridHeaderHeight: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + shouldShowDatasetsInLinkedRecordPicker: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + jiraSyncBypassTotal: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + includeColumnIsSyncedInPublicApi: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + coreDbFirstLoading: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + coreDbFirstLoadingSidecar: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + allowEditOfManagedViewsLayoutInFeatureKit: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableCoreDbShadowboxMigrationWrapper: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableWritebackOfCellValuesToCoreDbOnColumnConfigChange: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + lazyLoadRowTemplateUserAccessStatusClient: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + lazyLoadRowTemplateUserAccessStatusServer: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableAiAssistantImportSpreadsheetTool: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + atlassianJiraAlwaysConstructSchemaFromGetFieldsEndpoint: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + editIndividualFieldPropertiesInManagedCurrencyField: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + snowflakeGetSqlQueryResultsAsStream: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + useRecordCardsForSmallerArtifacts: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + allowGiantGroupsApplicationScoped: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableOmniToDeleteWorkflows: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + hideOmniMoleInInterfaces: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + detailViewFocusScopeContain: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableCoreDbIsoTableDataCache: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + enableOmniAppCreationSharePromptPopover: { + targetedEntityId: 'apprb2mFeIlQitU0o', + targetedEntityType: 'applicationUnified', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + }, + }, + rootBillingEntityFeatureFlagClientContext: { + flagNameToPrecalculatedVariant: { + enableEffectiveAiPolicyShadowEnforcement: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + gridAccessibilityImprovements: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + interfaceDesignerOmniButtonAction: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'winningVariant', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + aiFilterAssistance: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + omniConsultativeBuildingRootBillingEntityScoped: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + omniCellGridViewLongText: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + omniCellGridViewContextMenuAskOmniForMultipleRows: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + enableAiPolicyJournal: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + allowSubThreeYearDataRetention: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + allowApplicationMoveFromNonDataResidentToDataResidentRegion: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + adminPanelSyncConvertToForeignKeyColumns: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + aiCreditsForPortalAddOnCustomers: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + linkMandateConfirmationOnSubscriptionCreation: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + shadowModeStopDowngradeCredits: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + stopDowngradeCredits: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + trackSubscriptionStatus: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + enableCreditExpiration: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + enableShadowCreditExpiration: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + dataTableShouldEnableDataResidencyForS3Data: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + dataTablesSchemaManagement: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + enableCustomDomainInEnterpriseAdminPanelBasesTab: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + sendOrbBillingEvents: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + enableExternalShareCollaboratorInviteRestriction: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'rootBillingEntity', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + decisionCacheKey: 'wspdknfrhBYeXd3GD', + }, + }, + }, + workspaceFeatureFlagClientContext: { + workspaceId: 'wspdknfrhBYeXd3GD', + flagNameToPrecalculatedVariant: { + omniChatSidebarResizing: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + sandboxAllowMoveMainAndSandboxApplicationsOutOfWorkspace: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + aiModerationParallelizationForOpenAiEnabled: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + displayTaxIdComponents: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + billingRefactoredBusinessUpgradePaths: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + snapshotRestoreUnifiedEventLogEvents: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + snapshotRestoreUnifiedEventLogBlockDbCommits: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableHardRecordEnforcementServerSide: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableAttachmentLimitEnforcement: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableUpdatedOverLimitBadge: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + workspaceSettingsGracefullyHandleMissingApplicationOrPageBundle: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'control', + reason: 'trafficLevel', + }, + }, + workspaceInviteEmailRevamp2025: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + shareDialogSimplificationV3Workspace: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'winningVariant', + }, + }, + churnPreventionTeamPlanBillingCoupon2025Q4: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'control', + reason: 'random', + }, + }, + freeUserHighActivityDiscount: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'winningVariant', + }, + }, + highActivityOverL56dFreeWorkspaceBillingCoupon2025Q1: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + highActivityOverL56DFreeWorkspaceBillingCouponGa: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + nearOrAtLimitsFreeWorkspaceBillingCoupon2025Q1: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + checkoutAnnualFreeMonths: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'control', + reason: 'disabled', + }, + }, + deprecateHasMigratedToStripeDynamoDbCheck: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + enableDecember2025TeamStarterPackPromotion: { + targetedEntityId: 'wspdknfrhBYeXd3GD', + targetedEntityType: 'workspace', + precalculatedVariant: { + variant: 'treatment', + reason: 'random', + }, + }, + }, + }, + hasApplicationEverInstalledSolutionsPackage: false, + isUserLimitsHardEnforcementEnabledForParentWorkspace: false, + ekmEnablementMetadata: { + isEkmAttachmentUploadEnabled: false, + isEkmEnabled: false, + isFilestackFullyDisabled: true, + }, + syncedViewLimitMetadata: { + maxSyncableSharedViews: 100, + currentSyncableSharedViews: 0, + }, + aiConsumptionInfo: null, + dataResidentRegion: null, + assistantsById: {}, + hasUserSeenAntiPhishingWarningModalForApplication: false, + areImplicitSortsEnabled: false, + rowLimitPerViewOrPage: null, + previewModeThreshold: null, + customLoginPageProps: { + signedLoginUserContentUrls: {}, + }, + emailWorkflowTriggerDomain: 'automations.airtableemail.com', + isConstantPooledData: false, + }, +}; diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw5f7BhLA3OkthNv.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw5f7BhLA3OkthNv.json new file mode 100644 index 0000000000..53519f8e61 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw5f7BhLA3OkthNv.json @@ -0,0 +1 @@ +{"id":"viw5f7BhLA3OkthNv","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":false},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8Xse051lREItSC.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8Xse051lREItSC.json new file mode 100644 index 0000000000..d940c75710 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8Xse051lREItSC.json @@ -0,0 +1 @@ +{"id":"viw8Xse051lREItSC","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"metadata":{"gallery":{"coverColumnId":"fldeuBlvCNuVLTpag"}},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"gallery","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8p8zWYmN4Kwine.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8p8zWYmN4Kwine.json new file mode 100644 index 0000000000..98e69b5f92 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw8p8zWYmN4Kwine.json @@ -0,0 +1 @@ +{"id":"viw8p8zWYmN4Kwine","frozenColumnCount":1,"columnOrder":[{"columnId":"flduxFfvDassOS6sm","visibility":true},{"columnId":"fldBPTD14QIXSNarb","visibility":true},{"columnId":"fldn3XBgPr3SEbsXv","visibility":false},{"columnId":"fldXxq8VN0UhMy1xR","visibility":true},{"columnId":"fldrqN5ajLiEwNy0t","visibility":true}],"filters":{"filterSet":[{"id":"fltn1dZmC4SnYcCVt","columnId":"flduxFfvDassOS6sm","operator":"contains","value":"1"},{"id":"fltQefbSq0634Cxom","columnId":"flduxFfvDassOS6sm","operator":"contains","value":"2"}],"conjunction":"or"},"lastSortsApplied":{"sortSet":[{"id":"srtz6yNGgfc2hORy3","columnId":"flduxFfvDassOS6sm","ascending":true}],"shouldAutoSort":true,"appliedTime":"2022-06-04T10:32:22.736Z"},"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw9HVTL3HmZ3NCDd.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw9HVTL3HmZ3NCDd.json new file mode 100644 index 0000000000..d6c4ab8b88 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viw9HVTL3HmZ3NCDd.json @@ -0,0 +1 @@ +{"id":"viw9HVTL3HmZ3NCDd","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwMKGcEPNkD797BF.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwMKGcEPNkD797BF.json new file mode 100644 index 0000000000..f70bc4357e --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwMKGcEPNkD797BF.json @@ -0,0 +1 @@ +{"id":"viwMKGcEPNkD797BF","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"form","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwRRK2UljiQB3kko.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwRRK2UljiQB3kko.json new file mode 100644 index 0000000000..8e28e8c8c9 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwRRK2UljiQB3kko.json @@ -0,0 +1 @@ +{"id":"viwRRK2UljiQB3kko","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWYcqdMbeOx3Eg3.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWYcqdMbeOx3Eg3.json new file mode 100644 index 0000000000..3e2c89a3ad --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWYcqdMbeOx3Eg3.json @@ -0,0 +1 @@ +{"id":"viwWYcqdMbeOx3Eg3","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"form","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWiQnKWgbL2TGLw.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWiQnKWgbL2TGLw.json new file mode 100644 index 0000000000..6335321ecf --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwWiQnKWgbL2TGLw.json @@ -0,0 +1 @@ +{"id":"viwWiQnKWgbL2TGLw","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"metadata":{"gallery":{"coverColumnId":"fldeuBlvCNuVLTpag"}},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"gallery","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwXfVqIcM25FVTbd.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwXfVqIcM25FVTbd.json new file mode 100644 index 0000000000..d9821ef821 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwXfVqIcM25FVTbd.json @@ -0,0 +1 @@ +{"id":"viwXfVqIcM25FVTbd","frozenColumnCount":1,"columnOrder":[{"columnId":"fldH7RPO1Ik2ienk7","visibility":false,"width":180},{"columnId":"fldSx61dqgUzHTn1l","visibility":false},{"columnId":"fld6r7a0q9hodzUgY","visibility":true},{"columnId":"fld6IgZRozMKeFyc5","visibility":false},{"columnId":"fldqMqzYMQ7i85g5O","visibility":false},{"columnId":"fldlEkObSXpshw2wk","visibility":false},{"columnId":"fldqSMGqzoIKvexVL","visibility":false},{"columnId":"fldC1wGc9klzZw8nE","visibility":false},{"columnId":"fldpGVOU1gA9CZUP9","visibility":true},{"columnId":"fldg6nJJBJAxGnb8m","visibility":false},{"columnId":"fldBvDdsV1k24yKDu","visibility":false,"width":168},{"columnId":"fld2cA23dqfpiQ37p","visibility":false},{"columnId":"fldlebEyEK11MAXqP","visibility":false},{"columnId":"fld62jI4iMGIWBuAH","visibility":false},{"columnId":"fldwMZogQefTVfwfT","visibility":false},{"columnId":"fldmVzyNoFUOktFba","visibility":false},{"columnId":"fldoQ9fOkIU5Mhrtp","visibility":false},{"columnId":"fldBAkWGWoEQaM5uK","visibility":false},{"columnId":"fldrUlRlnWNRHa5Wn","visibility":false}],"groupLevels":null,"colorConfig":null,"sharesById":{},"metadata":{"form":{"description":"FormDescription","fieldsByColumnId":{"fld6r7a0q9hodzUgY":{"title":"DisplayName","description":"HelpText","required":true}},"refreshAfterSubmit":"AUTO_REFRESH_AND_REFRESH_BUTTON"}},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"form","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwZnwvKkOBnDqpul.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwZnwvKkOBnDqpul.json new file mode 100644 index 0000000000..ca53722c54 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwZnwvKkOBnDqpul.json @@ -0,0 +1 @@ +{"id":"viwZnwvKkOBnDqpul","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"form","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwc6YeYMlRUFJUYa.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwc6YeYMlRUFJUYa.json new file mode 100644 index 0000000000..e132e379bb --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwc6YeYMlRUFJUYa.json @@ -0,0 +1 @@ +{"id":"viwc6YeYMlRUFJUYa","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"form","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwebeyBYaiCnNwwO.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwebeyBYaiCnNwwO.json new file mode 100644 index 0000000000..e3681c0498 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwebeyBYaiCnNwwO.json @@ -0,0 +1 @@ +{"id":"viwebeyBYaiCnNwwO","frozenColumnCount":1,"columnOrder":[{"columnId":"fld6r7a0q9hodzUgY","visibility":true},{"columnId":"fld6IgZRozMKeFyc5","visibility":true},{"columnId":"fldqMqzYMQ7i85g5O","visibility":false},{"columnId":"fldlEkObSXpshw2wk","visibility":true},{"columnId":"fldH7RPO1Ik2ienk7","visibility":true,"width":180},{"columnId":"fldSx61dqgUzHTn1l","visibility":true},{"columnId":"fldqSMGqzoIKvexVL","visibility":true},{"columnId":"fldC1wGc9klzZw8nE","visibility":true},{"columnId":"fldpGVOU1gA9CZUP9","visibility":true},{"columnId":"fldg6nJJBJAxGnb8m","visibility":true},{"columnId":"fldBvDdsV1k24yKDu","visibility":true,"width":168},{"columnId":"fld2cA23dqfpiQ37p","visibility":true},{"columnId":"fldlebEyEK11MAXqP","visibility":true},{"columnId":"fld62jI4iMGIWBuAH","visibility":true},{"columnId":"fldwMZogQefTVfwfT","visibility":true},{"columnId":"fldmVzyNoFUOktFba","visibility":true},{"columnId":"fldoQ9fOkIU5Mhrtp","visibility":true,"width":252},{"columnId":"fldBAkWGWoEQaM5uK","visibility":true},{"columnId":"fldrUlRlnWNRHa5Wn","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwqB059qatxSF8tI.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwqB059qatxSF8tI.json new file mode 100644 index 0000000000..6ecd74ad5e --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwqB059qatxSF8tI.json @@ -0,0 +1 @@ +{"id":"viwqB059qatxSF8tI","frozenColumnCount":1,"columnOrder":[{"columnId":"flduxFfvDassOS6sm","visibility":true},{"columnId":"fldBPTD14QIXSNarb","visibility":true},{"columnId":"fldn3XBgPr3SEbsXv","visibility":true},{"columnId":"fldXxq8VN0UhMy1xR","visibility":true},{"columnId":"fldrqN5ajLiEwNy0t","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwsF12Zep2IrUQ4L.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwsF12Zep2IrUQ4L.json new file mode 100644 index 0000000000..d7249f07dd --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwsF12Zep2IrUQ4L.json @@ -0,0 +1 @@ +{"id":"viwsF12Zep2IrUQ4L","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"grid","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwvu6dBtJcPFvl4b.json b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwvu6dBtJcPFvl4b.json new file mode 100644 index 0000000000..cdd5bbfaf0 --- /dev/null +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/engine/mockResponses/readView_viwvu6dBtJcPFvl4b.json @@ -0,0 +1 @@ +{"id":"viwvu6dBtJcPFvl4b","frozenColumnCount":1,"columnOrder":[{"columnId":"fldaKGmXYDqycI6FP","visibility":true},{"columnId":"fldJ4MZo6XbVBK8Cm","visibility":true},{"columnId":"fldeuBlvCNuVLTpag","visibility":true},{"columnId":"fldi3aP7nI5d7Th0S","visibility":true}],"filters":null,"lastSortsApplied":null,"groupLevels":null,"colorConfig":null,"sharesById":{},"metadata":{"gallery":{"coverColumnId":"fldeuBlvCNuVLTpag"}},"description":null,"createdByUserId":"usr9GWEED0hhrQ3P7","type":"gallery","applicationTransactionNumber":4,"signedUserContentUrls":{}} \ No newline at end of file diff --git a/packages/nocodb/src/modules/jobs/jobs/at-import/helpers/fetchAT.ts b/packages/nocodb/src/modules/jobs/jobs/at-import/helpers/fetchAT.ts index a18e8893cb..b963cb1b4d 100644 --- a/packages/nocodb/src/modules/jobs/jobs/at-import/helpers/fetchAT.ts +++ b/packages/nocodb/src/modules/jobs/jobs/at-import/helpers/fetchAT.ts @@ -3,6 +3,7 @@ import axios from 'axios'; import { streamObject } from 'stream-json/streamers/StreamObject'; import { parser } from 'stream-json/Parser'; import { ignore } from 'stream-json/filters/Ignore'; +import { ATImportEngine } from '../engine'; const logger = new Logger('FetchAT'); @@ -17,31 +18,8 @@ async function initialize(shareId, appId?: string) { appId = null; } - const url = `https://airtable.com/${appId ? `${appId}/` : ''}${shareId}`; - try { - const hreq = await axios.get(url, { - headers: { - accept: - 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', - 'accept-language': 'en-US,en;q=0.9', - 'sec-ch-ua': - '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', - 'sec-ch-ua-mobile': '?0', - 'sec-ch-ua-platform': '"Linux"', - 'sec-fetch-dest': 'document', - 'sec-fetch-mode': 'navigate', - 'sec-fetch-site': 'none', - 'sec-fetch-user': '?1', - 'upgrade-insecure-requests': '1', - 'User-Agent': - 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', - }, - // @ts-ignore - referrerPolicy: 'strict-origin-when-cross-origin', - body: null, - method: 'GET', - }); + const hreq = await ATImportEngine.get().initialize({ appId, shareId }); for (const ck of hreq.headers['set-cookie']) { info.cookie += ck.split(';')[0] + '; '; @@ -108,29 +86,7 @@ async function initialize(shareId, appId?: string) { async function read() { if (info.initialized) { try { - const resreq = await axios('https://airtable.com' + info.link, { - headers: { - accept: '*/*', - 'accept-language': 'en-US,en;q=0.9', - 'sec-ch-ua': - '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', - 'sec-ch-ua-mobile': '?0', - 'sec-ch-ua-platform': '"Linux"', - 'sec-fetch-dest': 'empty', - 'sec-fetch-mode': 'cors', - 'sec-fetch-site': 'same-origin', - 'User-Agent': - 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', - 'x-time-zone': 'Europe/Berlin', - cookie: info.cookie, - ...info.headers, - }, - // @ts-ignore - referrerPolicy: 'no-referrer', - body: null, - method: 'GET', - responseType: 'stream', - }); + const resreq = await ATImportEngine.get().read(info); const data: any = await new Promise((resolve, reject) => { const jsonStream = resreq.data @@ -179,49 +135,7 @@ async function read() { async function readView(viewId) { if (info.initialized) { try { - const resreq = await axios( - `https://airtable.com/v0.3/view/${viewId}/readData?` + - `stringifiedObjectParams=${encodeURIComponent( - JSON.stringify({ - mayOnlyIncludeRowAndCellDataForIncludedViews: true, - mayExcludeCellDataForLargeViews: true, - }), - )}&requestId=${ - info.baseInfo.requestId - }&accessPolicy=${encodeURIComponent( - JSON.stringify({ - allowedActions: info.baseInfo.allowedActions, - shareId: info.baseInfo.shareId, - applicationId: info.baseInfo.applicationId, - generationNumber: info.baseInfo.generationNumber, - expires: info.baseInfo.expires, - signature: info.baseInfo.signature, - }), - )}`, - { - headers: { - accept: '*/*', - 'accept-language': 'en-US,en;q=0.9', - 'sec-ch-ua': - '" Not A;Brand";v="99", "Chromium";v="100", "Google Chrome";v="100"', - 'sec-ch-ua-mobile': '?0', - 'sec-ch-ua-platform': '"Linux"', - 'sec-fetch-dest': 'empty', - 'sec-fetch-mode': 'cors', - 'sec-fetch-site': 'same-origin', - 'User-Agent': - 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36', - 'x-time-zone': 'Europe/Berlin', - cookie: info.cookie, - ...info.headers, - }, - // @ts-ignore - referrerPolicy: 'no-referrer', - body: null, - method: 'GET', - responseType: 'stream', - }, - ); + const resreq = await ATImportEngine.get().readView(viewId, info); const data: any = await new Promise((resolve, reject) => { const jsonStream = resreq.data diff --git a/tests/playwright/constants/index.ts b/tests/playwright/constants/index.ts index 80c8314548..b40eda9913 100644 --- a/tests/playwright/constants/index.ts +++ b/tests/playwright/constants/index.ts @@ -1,7 +1,7 @@ const airtableApiBases = [ - 'https://airtable.com/appZtc5xOWQkUL4Ok/shrrfpcWoNa5QGGSI', - 'https://airtable.com/appBnSP4VbJtKTTHB/shrfiNNg3yk9A0APu', - 'https://airtable.com/appPFK0xj5jTQR6wQ/shr6zjJvrUbSvfGPq', + // 'https://airtable.com/appZtc5xOWQkUL4Ok/shrrfpcWoNa5QGGSI', + // 'https://airtable.com/appBnSP4VbJtKTTHB/shrfiNNg3yk9A0APu', + // 'https://airtable.com/appPFK0xj5jTQR6wQ/shr6zjJvrUbSvfGPq', 'https://airtable.com/apprb2mFeIlQitU0o/shrY6swT2FOy9X1Bl', ]; const today = new Date();