| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352 |
- {
- "segments": {},
- "flags": {
- "feat_front_dev_1752_notification_links_in_label_and_review_streams": {
- "key": "feat_front_dev_1752_notification_links_in_label_and_review_streams",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "dde132d08b0841e8ac318318bc54e87f",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "feat_front_dev_3260_alternative_shortcuts_for_video_naviagtion": {
- "key": "feat_front_dev_3260_alternative_shortcuts_for_video_naviagtion",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "0cbf5484f8e04f70838106e3490ecb32",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "feat_front_dev_399_lock_interface_when_trial_expired_short": {
- "key": "feat_front_dev_399_lock_interface_when_trial_expired_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fd80549f8ea84dbfbbf2bbe6daeffa01",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "feat_optic_1098_annotation_history_lead_time_charts": {
- "key": "feat_optic_1098_annotation_history_lead_time_charts",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "b876638e49394959acae27c1d37c4eee",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "ff_back_2004_async_review_24032022_short": {
- "key": "ff_back_2004_async_review_24032022_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2145a3e956e645f299e16e90b6e54e89",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "ff_back_2884_comments_notifications_02092022_short": {
- "key": "ff_back_2884_comments_notifications_02092022_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "1a1ba4d3a3ea454ebce1626dabe53aa5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "ff_back_DEV_3374_review_query_160922_short": {
- "key": "ff_back_DEV_3374_review_query_160922_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "028a3e3aff9b41869d62269fcf599e64",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "ff_back_dev_1417_start_training_mlbackend_webhooks_250122_long": {
- "key": "ff_back_dev_1417_start_training_mlbackend_webhooks_250122_long",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5e82b5b9641a4474bb97f54919b9f47a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "ff_back_dev_1948_reviewed_status_16052022_short": {
- "key": "ff_back_dev_1948_reviewed_status_16052022_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fbdfa98516e2449e9cf58d5368f73771",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "ff_back_dev_2362_project_credentials_060722_short": {
- "key": "ff_back_dev_2362_project_credentials_060722_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "05092a9cc7fc428b9b6520ffc0d506af",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "ff_back_dev_2762_textarea_weights_30062022_short": {
- "key": "ff_back_dev_2762_textarea_weights_30062022_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "8371d41f39024d86b1315cd37c2dc553",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "ff_back_dev_4664_remove_storage_file_on_export_delete_29032023_short": {
- "key": "ff_back_dev_4664_remove_storage_file_on_export_delete_29032023_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "b67cb5a44e0c45259e82cc9404421fcb",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "ff_back_experimental_features": {
- "key": "ff_back_experimental_features",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "aaf0e626e3bc44de99c620ec24df9f96",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "ff_fix_back_dev_3342_storage_scan_with_invalid_annotations": {
- "key": "ff_fix_back_dev_3342_storage_scan_with_invalid_annotations",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bb6f4889c59d47faa4145a8a5a694d37",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "ff_front_dev_1442_unselect_shape_on_click_outside_080622_short": {
- "key": "ff_front_dev_1442_unselect_shape_on_click_outside_080622_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "27301e1167d14c31b04495b0bde029d2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "ff_front_dev_1480_created_on_in_review_180122_short": {
- "key": "ff_front_dev_1480_created_on_in_review_180122_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "de557f03d92c49b9926cc15472bf2edd",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "ff_front_dev_1536_taxonomy_user_labels_150222_long": {
- "key": "ff_front_dev_1536_taxonomy_user_labels_150222_long",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "396498db51644f0abf7f5de063bea3d0",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "ff_front_dev_1682_model_version_dropdown_070622_short": {
- "key": "ff_front_dev_1682_model_version_dropdown_070622_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "58f4f819d52b461b9e833cdb896311d6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 9,
- "deleted": false
- },
- "ff_front_dev_2186_comments_for_update": {
- "key": "ff_front_dev_2186_comments_for_update",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "29db86dba7204e519da03f91d8fc59ed",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "ff_front_dev_2669_paragraph_author_filter_210622_short": {
- "key": "ff_front_dev_2669_paragraph_author_filter_210622_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7d2dab6b947d47b0a833dc98367a6cd4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "ff_front_dev_2671_anchor_rotate_bbox_010722_short": {
- "key": "ff_front_dev_2671_anchor_rotate_bbox_010722_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "0f7496343ddf4a819ef9f560b479d4c0",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "ff_front_optic_1494_saved_templates_to_custom_templates": {
- "key": "ff_front_optic_1494_saved_templates_to_custom_templates",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bd4fd2af88bc47fa8d0b7c7648158e4d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "ff_front_optic_1610_ask_ai_questions": {
- "key": "ff_front_optic_1610_ask_ai_questions",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5a8d9cd75b6c4a5ea5985316ab34b25d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag-feat-dev-2887-comments-ui-editor-short": {
- "key": "fflag-feat-dev-2887-comments-ui-editor-short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7b49c8b7fb8a4bb6b2836e3cdeeee5df",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 9,
- "deleted": false
- },
- "fflag-feat-dev-3034-comments-with-drafts-short": {
- "key": "fflag-feat-dev-3034-comments-with-drafts-short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "4070f7702bc84aa4a4ccf28fb92d3e7a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag-feat-front-dev-2866-free-trial-invite-short": {
- "key": "fflag-feat-front-dev-2866-free-trial-invite-short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "82b06caa7c0242f780dbdf5e1f537b45",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag-feat-front-dev-3051-trial-experience": {
- "key": "fflag-feat-front-dev-3051-trial-experience",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9fe785a26fea4f3bad0c25781f980ac4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag__feature_develop__prompts__dia_1829_jwt_token_auth": {
- "key": "fflag__feature_develop__prompts__dia_1829_jwt_token_auth",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "e907cff690ed4dc490a6104c7dca73d9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "fflag__feature_develop__prompts__dia_1868_azure_ai_foundry": {
- "key": "fflag__feature_develop__prompts__dia_1868_azure_ai_foundry",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "b08fc450f77d4fd7828957aeba9cdfdb",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_all_feat_bros_421_review_random_and_limit_tasks": {
- "key": "fflag_all_feat_bros_421_review_random_and_limit_tasks",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "db7b096d5f524fb591d122b4aaf9bc36",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_all_feat_dia_1777_ls_homepage_short": {
- "key": "fflag_all_feat_dia_1777_ls_homepage_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "3f344436b8be40069db2f0031edb8dfa",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_all_feat_utc_112_open_in_starter_cloud": {
- "key": "fflag_all_feat_utc_112_open_in_starter_cloud",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f4b7b0d87c2f413c819e08552b19c4ac",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_all_feat_utc_204_users_performance_improvements_in_dm_for_large_orgs": {
- "key": "fflag_all_feat_utc_204_users_performance_improvements_in_dm_for_large_orgs",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f171bc9c5fa94159af06ea154aa175ea",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_all_feat_utc_274_permissions_improvements": {
- "key": "fflag_all_feat_utc_274_permissions_improvements",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6480d003587f42d285dac2911a8819f4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_bros_660_members_review_accepted_rejected": {
- "key": "fflag_bros_660_members_review_accepted_rejected",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d3951d9ac5b0492a97ab85ca55a348a5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_dev_disable_polling_killswitch_short": {
- "key": "fflag_dev_disable_polling_killswitch_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "884c26388a324c9b9c26faa10251d386",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_1178_annotation_time_in_member_analytics": {
- "key": "fflag_feat_1178_annotation_time_in_member_analytics",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bb78b25e905a426394dd23b1f912d408",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_long": {
- "key": "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_long",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6fd7f4be8bda46e897631d662f980c06",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_short_async_presets_ks": {
- "key": "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_short_async_presets_ks",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7c6d7ec1634e4d24acdf53fed7b23c54",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_dia_1700_pinned_organization_sidebar": {
- "key": "fflag_feat_all_dia_1700_pinned_organization_sidebar",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "b5d2f96acd364480a4b631b6836b3f21",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_dia_2067_tasks_table_component": {
- "key": "fflag_feat_all_dia_2067_tasks_table_component",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2130aa7856c54c8ba9d3745630bd8ae8",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_dia_835_prompter_workflow_long": {
- "key": "fflag_feat_all_dia_835_prompter_workflow_long",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "efa1b3e7ae7e4b5fa37657178a5b233e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_all_fit_1137_annotation_time": {
- "key": "fflag_feat_all_fit_1137_annotation_time",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "e04409b856b34bd999d0081d04a4866b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_fit_162_workspaces_projects_ui_improvements": {
- "key": "fflag_feat_all_fit_162_workspaces_projects_ui_improvements",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ca41890152ee4be99fcd269fc6e9b0d6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_all_fit_524_review_time_chart": {
- "key": "fflag_feat_all_fit_524_review_time_chart",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "87fc3bfb69564792948ff63d019e1242",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_fit_725_command_palette_short": {
- "key": "fflag_feat_all_fit_725_command_palette_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "47a872c084894b8e9e5127869cefbab6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_fit_730_review_time_column": {
- "key": "fflag_feat_all_fit_730_review_time_column",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "50ddaa088ed84a9cba1aca9704af8b2c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_fit_778_analytics_short": {
- "key": "fflag_feat_all_fit_778_analytics_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "95302a9d85634c38aa2ec6df86dd438d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_fit_866_analytics_overview_short": {
- "key": "fflag_feat_all_fit_866_analytics_overview_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c82dcf28900144ec980adbacd0ca5589",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_leap_1081_reviewer_flow_updates": {
- "key": "fflag_feat_all_leap_1081_reviewer_flow_updates",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "e2b43ff7cff547c1b68bf2539a0782a1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 8,
- "deleted": false
- },
- "fflag_feat_all_leap_1181_bulk_annotation_short": {
- "key": "fflag_feat_all_leap_1181_bulk_annotation_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "978a68420b714121be3a153a4c472abe",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_feat_all_leap_1429_flexible_reject_mode_250924_short": {
- "key": "fflag_feat_all_leap_1429_flexible_reject_mode_250924_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "dc85fa6d78d84d09a54702d35d2184c1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_all_leap_1534_custom_task_lock_timeout_short": {
- "key": "fflag_feat_all_leap_1534_custom_task_lock_timeout_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "736e713d05a544a78e8ad1c9dbcc8376",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_leap_1682_plugins_v0": {
- "key": "fflag_feat_all_leap_1682_plugins_v0",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "92d6c7305394440696aa8abf0e5d2143",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_leap_1732_pausing_an_annotator_short": {
- "key": "fflag_feat_all_leap_1732_pausing_an_annotator_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bf2998352dcb4350846a1621b3c44626",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_leap_1821_annotation_limit_short": {
- "key": "fflag_feat_all_leap_1821_annotation_limit_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "55ab9d58aa70410d8bf4a8b3dd1712bb",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_leap_2042_average_agreement_score_popover": {
- "key": "fflag_feat_all_leap_2042_average_agreement_score_popover",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "68a21fc8190441fb85b49b49a32583b0",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_leap_883_custom_script_270524_short": {
- "key": "fflag_feat_all_leap_883_custom_script_270524_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6c077db957b14df68a3790866fec95d2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "fflag_feat_all_lops_315_temp_datasets_limitations_short": {
- "key": "fflag_feat_all_lops_315_temp_datasets_limitations_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2fe0488c9cf342f3a4d2b21ca8a39f77",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_lops_e_3_datasets_short": {
- "key": "fflag_feat_all_lops_e_3_datasets_short",
- "on": true,
- "prerequisites": [],
- "targets": [
- {
- "contextKind": "user",
- "variation": 0,
- "values": [
- "yousif@heartex.com"
- ]
- }
- ],
- "contextTargets": [
- {
- "contextKind": "user",
- "variation": 0,
- "values": []
- }
- ],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9048a4ea89c0437b90600d9bdaf62eaa",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_feat_all_lsdv_e_294_llm_annotations_180723_long": {
- "key": "fflag_feat_all_lsdv_e_294_llm_annotations_180723_long",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "640d40057d9f408587c8996ac2d3710c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 8,
- "deleted": false
- },
- "fflag_feat_all_lsdv_e_295_project_level_roles_via_saml_scim_ldap_short": {
- "key": "fflag_feat_all_lsdv_e_295_project_level_roles_via_saml_scim_ldap_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ca5b9081fa654bc08621311cc409a341",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_optic_1354_sum_annotation_region_count_short": {
- "key": "fflag_feat_all_optic_1354_sum_annotation_region_count_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bbb5c996193946d9935d9438e0c5a33a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_all_optic_1811_automax_project_setup_streaming": {
- "key": "fflag_feat_all_optic_1811_automax_project_setup_streaming",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "4bbabd8130cd43fcb0b30f2eb3ef7f56",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_utc_179_custom_function_logs": {
- "key": "fflag_feat_all_utc_179_custom_function_logs",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "46211fe6c7124fd4b8e731efc8bb8572",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_all_utc_222_prompts_api_keys_enterprise_only": {
- "key": "fflag_feat_all_utc_222_prompts_api_keys_enterprise_only",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c99901253ca14e4a955c3cefde8af61c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_back_dev_3756_queue_enrollment_min_short": {
- "key": "fflag_feat_back_dev_3756_queue_enrollment_min_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "081f810caa714e5cab227bb557c798a2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_back_lsdv_3958_server_side_encryption_for_target_storage_short": {
- "key": "fflag_feat_back_lsdv_3958_server_side_encryption_for_target_storage_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "850718b1924948e6a8fac22840a18993",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_back_lsdv_4932_enable_memory_profiler": {
- "key": "fflag_feat_back_lsdv_4932_enable_memory_profiler",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5b7df006ae16414982f3395daadc9245",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_back_lsdv_5307_import_reviews_drafts_29062023_short": {
- "key": "fflag_feat_back_lsdv_5307_import_reviews_drafts_29062023_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "3f7fe060bc424b98829c06ca3e3bd62c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_back_optic_1579_force_memory_profiler": {
- "key": "fflag_feat_back_optic_1579_force_memory_profiler",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ca386034d55e4907a022740cbe2250e8",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_back_optic_428_scim_multi_mapping": {
- "key": "fflag_feat_back_optic_428_scim_multi_mapping",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "361255f1f8a445b285c66737152783cb",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 8,
- "deleted": false
- },
- "fflag_feat_back_org_excluded_from_custom_scripts_validation_short": {
- "key": "fflag_feat_back_org_excluded_from_custom_scripts_validation_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "4f0a52167be74bf2b7943a17baede004",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_backend_optic_427_org_member_role_throttling_short": {
- "key": "fflag_feat_backend_optic_427_org_member_role_throttling_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "47de2782717d44c0a1d770a1e64e3760",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_bros_12_support_reports": {
- "key": "fflag_feat_bros_12_support_reports",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6f7074ba239341a6b20502b7d3e7255b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_bros_193_new_cloud_storage_providers_short": {
- "key": "fflag_feat_bros_193_new_cloud_storage_providers_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f20c6ed11aa948e78a6f5f3e75f055b1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_bros_353_databricks_files": {
- "key": "fflag_feat_bros_353_databricks_files",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "8803109d73674c9dbfd3f4e0ed549908",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_bros_573_project_soft_deletion": {
- "key": "fflag_feat_bros_573_project_soft_deletion",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "acbd7ebcde3c4a62949d5017a562b732",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_dev_2755_regions_list_grouped_by_labels_with_ordered_collapse_short": {
- "key": "fflag_feat_dev_2755_regions_list_grouped_by_labels_with_ordered_collapse_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "78df3c3594d1489c876dc8bb1bc5608e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_dia_1661_improve_prompts_discovery_and_conversion": {
- "key": "fflag_feat_dia_1661_improve_prompts_discovery_and_conversion",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "dd91c724ccc84009874e458acc785d1f",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_dia_1697_product_tour_short": {
- "key": "fflag_feat_dia_1697_product_tour_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c189d5e451df4baead35fbb4c0664652",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_dia_1920_project_creation_sample_data_short": {
- "key": "fflag_feat_dia_1920_project_creation_sample_data_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9f81fdc5e214419f8715744315e2b050",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_dia_1925_view_sample_raw_json_short": {
- "key": "fflag_feat_dia_1925_view_sample_raw_json_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ada8018a7d124ed3976aba1e0ae85c81",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_fit_449_datamanager_filter_members_short": {
- "key": "fflag_feat_fit_449_datamanager_filter_members_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "535a9963d6e342eaa088a0405c41d4e9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_fit_523_emitting_task_events_for_annotation_and_review": {
- "key": "fflag_feat_fit_523_emitting_task_events_for_annotation_and_review",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "05ae86bc74ca4d42a43a6e0ff0f18d2f",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_fit_528_icon_menu_short": {
- "key": "fflag_feat_fit_528_icon_menu_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2ca9a6f250e8410dbf942fdfc052d736",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_fit_52_label_studio_enterprise_embed": {
- "key": "fflag_feat_fit_52_label_studio_enterprise_embed",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "040157bb203947de887798a56be2b3b4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_fit_568_finite_state_management": {
- "key": "fflag_feat_fit_568_finite_state_management",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2ab6712d781c45ef97555e5ae0fec8a2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_fit_710_fsm_state_fields": {
- "key": "fflag_feat_fit_710_fsm_state_fields",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "406c3f0910444278b06394ee33773d9d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_fit_890_ask_ai_event_stream": {
- "key": "fflag_feat_fit_890_ask_ai_event_stream",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "a71b7adde0c9412bbdd1d76e6214e082",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_front_bros_194_custom_tags_short": {
- "key": "fflag_feat_front_bros_194_custom_tags_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "de13b8aabfdb4e23b4b12b7b6a4bab0b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_bros_199_enable_select_all_in_ner_phrase_short": {
- "key": "fflag_feat_front_bros_199_enable_select_all_in_ner_phrase_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "a2542855bb6e42dab6e1d5aa4574091b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_bros_327_multiple_labels_regions_short": {
- "key": "fflag_feat_front_bros_327_multiple_labels_regions_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f0c19fe911ba40fab6ba4b633652454d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_bros_371_new_pdf_tag_short": {
- "key": "fflag_feat_front_bros_371_new_pdf_tag_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5dca97dd6b6741418230f4bd1b12e13b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_front_dev-2536_comment_notifications_short": {
- "key": "fflag_feat_front_dev-2536_comment_notifications_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ae80730e3ab04b27b8d601288ca4d306",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_dev_3051_trial_experience_short": {
- "key": "fflag_feat_front_dev_3051_trial_experience_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d47457aa23254d0e8352d7be1b33e2e7",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_dev_3077_repeater_tag_loading_performance_short": {
- "key": "fflag_feat_front_dev_3077_repeater_tag_loading_performance_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "0ec959822b674511aae50586b7eae9fc",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_dev_3873_labeling_ui_improvements_short": {
- "key": "fflag_feat_front_dev_3873_labeling_ui_improvements_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ea02c8fb80a34239a5aedc42049069df",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_dia_1747_projects_list_banner": {
- "key": "fflag_feat_front_dia_1747_projects_list_banner",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "21bfa474c82b4ab0b89314fbecd164cc",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_fit_183_email_notifications_short": {
- "key": "fflag_feat_front_fit_183_email_notifications_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ea8b324ddf9f4b94be35cc4ae4f41cc1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_leap_1173_disable_postpone_skip_short": {
- "key": "fflag_feat_front_leap_1173_disable_postpone_skip_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "23ef99b0cc8a4a3c99a09e47268cabd6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_leap_1198_unsaved_changes_180724": {
- "key": "fflag_feat_front_leap_1198_unsaved_changes_180724",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fd634284baf64b30aae8a7fcfb13db18",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_leap_1424_grid_preview_short": {
- "key": "fflag_feat_front_leap_1424_grid_preview_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "dfdd8f564ddc4111b73f59594a17502d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_leap_1973_adjustable_spans_090425_short": {
- "key": "fflag_feat_front_leap_1973_adjustable_spans_090425_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7c699fb3534c4dd694aa9d59256e0f15",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_leap_2036_annotations_summary": {
- "key": "fflag_feat_front_leap_2036_annotations_summary",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "a0c67bbfb44743d6903c9445033c59c3",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_leap_482_self_serve_short": {
- "key": "fflag_feat_front_leap_482_self_serve_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "775b9819acb6465baae3d091647ef9b4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_feat_front_lops_134_find_similarity_29082023_short": {
- "key": "fflag_feat_front_lops_134_find_similarity_29082023_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d1390aeb04d14bc581c5e244a2871588",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_lsdv_4583_6_images_preloading_short": {
- "key": "fflag_feat_front_lsdv_4583_6_images_preloading_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9b2f7864ca074f5f8a0a4bfcae57bf86",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_lsdv_4583_multi_image_segmentation_short": {
- "key": "fflag_feat_front_lsdv_4583_multi_image_segmentation_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "2fd5d4989a174d679bde905ada2548af",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_lsdv_5451_async_taxonomy_110823_short": {
- "key": "fflag_feat_front_lsdv_5451_async_taxonomy_110823_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "384b6f4ac48b4f1fa88d7563e50973e1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_front_lsdv_5452_taxonomy_labeling_110823_short": {
- "key": "fflag_feat_front_lsdv_5452_taxonomy_labeling_110823_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d8b8859f42d044eb912ca2734826a58e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_lsdv_e_278_contextual_scrolling_short": {
- "key": "fflag_feat_front_lsdv_e_278_contextual_scrolling_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "04cfe1dec05344db9c20e81663546744",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_feat_front_lsdv_e_297_increase_oss_to_enterprise_adoption_short": {
- "key": "fflag_feat_front_lsdv_e_297_increase_oss_to_enterprise_adoption_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "3e7648d6922e412a9e512fbfed2074c9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 16,
- "deleted": false
- },
- "fflag_feat_front_optic_1217_theme_toggle_short": {
- "key": "fflag_feat_front_optic_1217_theme_toggle_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "1b3bca98ba6c4a7bb5559e50c280cf4a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_optic_1479_improve_image_tag_memory_usage_short": {
- "key": "fflag_feat_front_optic_1479_improve_image_tag_memory_usage_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "21716e7aae704a6cb04f7d72ee5cff33",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_optic_1746_improve_global_error_messages_short": {
- "key": "fflag_feat_front_optic_1746_improve_global_error_messages_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "e31a1913483c4765a2eda65c37577ff3",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_front_optic_66_lazy_chart_evaluation_19092023_short": {
- "key": "fflag_feat_front_optic_66_lazy_chart_evaluation_19092023_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fa6d1be06b5e4078930ac6bb768c1f5d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feat_front_optic_optic_1442_hubspot_talk_to_sales_modal_short": {
- "key": "fflag_feat_front_optic_optic_1442_hubspot_talk_to_sales_modal_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d5eba9242d7b470abdf91e06b284e5dd",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_optic_1025_zendesk_widget_integration": {
- "key": "fflag_feat_optic_1025_zendesk_widget_integration",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "98f5d577937c47528ce3105baf9f7f91",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_optic_2123_audio_spectrograms": {
- "key": "fflag_feat_optic_2123_audio_spectrograms",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "22c39d2de39640dbbce81c06559cfce7",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_optic_2125_timeseries_sync": {
- "key": "fflag_feat_optic_2125_timeseries_sync",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c97ee12f1c2a46918bffcda57fbd822b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_feat_optic_378_limit_projects_per_page_to_ten_short": {
- "key": "fflag_feat_optic_378_limit_projects_per_page_to_ten_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ba4bc211dec84a63b9bd523ad75a1192",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_optic_650_target_storage_task_format_long": {
- "key": "fflag_feat_optic_650_target_storage_task_format_long",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "91ce1d8a88364b879d17d679d50360b4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_root_11_support_jsonl_cloud_storage": {
- "key": "fflag_feat_root_11_support_jsonl_cloud_storage",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "85e018dcd2e64c689a61ee7ed3c5edb2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_root_16_support_parquet_cloud_storage": {
- "key": "fflag_feat_root_16_support_parquet_cloud_storage",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "19f34d7d3a734e56828582f4db176382",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_root_47_plugins_without_eval": {
- "key": "fflag_feat_root_47_plugins_without_eval",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f580cdbb4b4049feadc3d24d64e4be0a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_feat_utc_161_bulk_queue_total_11072025_short": {
- "key": "fflag_feat_utc_161_bulk_queue_total_11072025_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "17decd616a69458eb28018c2b293c99a",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_utc_210_prediction_validation_15082025": {
- "key": "fflag_feat_utc_210_prediction_validation_15082025",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "89569f115281416392e46d3d5af71f42",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_utc_239_filterable_agreement_column_short": {
- "key": "fflag_feat_utc_239_filterable_agreement_column_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "58a7562df60047acb3b2cac8dfb7bd1e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feat_utc_384_manage_members_v2": {
- "key": "fflag_feat_utc_384_manage_members_v2",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5de71047836a4339b34bd9d5bd6c5b5c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_feature_all_optic_1421_cold_start_v2": {
- "key": "fflag_feature_all_optic_1421_cold_start_v2",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d57e006e30b849a0b33264c536a6f685",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_feature_all_optic_1541_performance_score_on_latest_review_short": {
- "key": "fflag_feature_all_optic_1541_performance_score_on_latest_review_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9a52adb8dcdf49e4b1c9d18ec8441ec9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fit_1158_unlimit_analytics_mp": {
- "key": "fflag_fit_1158_unlimit_analytics_mp",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7cdd2d830a194423bab9e645666dc45b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_all_leap_877_annotator_membership_api_03042024_short": {
- "key": "fflag_fix_all_leap_877_annotator_membership_api_03042024_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "f04c36c72422448ba39bc3cc00622b31",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_all_lsdv_4813_async_export_conversion_22032023_short": {
- "key": "fflag_fix_all_lsdv_4813_async_export_conversion_22032023_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "081693f1f8494644a4aa0cd80c5367f5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_all_lsdv_4896_dm_actions_to_reviewers_20230403_short": {
- "key": "fflag_fix_all_lsdv_4896_dm_actions_to_reviewers_20230403_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "76c7753b7a984dac8845a7673ee2dc06",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_all_optic_18_dashboard_label_distribution_chart_async_22082023_short": {
- "key": "fflag_fix_all_optic_18_dashboard_label_distribution_chart_async_22082023_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "9d72a066d0444d80815883d0208996dc",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_fix_all_optic_79_task_count_is_wrong_short": {
- "key": "fflag_fix_all_optic_79_task_count_is_wrong_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": true
- },
- "clientSide": true,
- "salt": "a5735954e251447386d319899754e210",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_fix_back_4620_memory_efficient_predictions_import_08012025_short": {
- "key": "fflag_fix_back_4620_memory_efficient_predictions_import_08012025_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "43e3fb5be5084d848c08a2d9759d0b86",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_back_bros_182_api_task_optimizations": {
- "key": "fflag_fix_back_bros_182_api_task_optimizations",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "574479ada5b54372b874f9702e2907f9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_fix_back_dev_3668_review_stream_optimizaion_short": {
- "key": "fflag_fix_back_dev_3668_review_stream_optimizaion_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "58a0578267584d09a8467abe746a4897",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_back_dev_4174_overlap_issue_experiments_10012023_short": {
- "key": "fflag_fix_back_dev_4174_overlap_issue_experiments_10012023_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "8bcf48d51d93450c89981129796f1e48",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_back_dev_4185_next_task_additional_logging_long": {
- "key": "fflag_fix_back_dev_4185_next_task_additional_logging_long",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "50327b7ef2a146dc9aff924769111066",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_back_leap_1818_set_convert_background_failure_logging_02062025_short": {
- "key": "fflag_fix_back_leap_1818_set_convert_background_failure_logging_02062025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d6b27cf5610448b1bea29d4af46e0043",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_lsdv_4523_show_overlap_first_order_27022023_short": {
- "key": "fflag_fix_back_lsdv_4523_show_overlap_first_order_27022023_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "69f53396c78443738f4cbb0afa203960",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_back_lsdv_4604_excess_sql_queries_in_api_short": {
- "key": "fflag_fix_back_lsdv_4604_excess_sql_queries_in_api_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "439816e9dbcc4c27b600cc97c9a25e6b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_back_lsdv_4929_limit_exports_10042023_short": {
- "key": "fflag_fix_back_lsdv_4929_limit_exports_10042023_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bb069bd904a64607b36ea05d01651565",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_lsdv_5425_1_enable_permissions_restrictions_for_annotators_long": {
- "key": "fflag_fix_back_lsdv_5425_1_enable_permissions_restrictions_for_annotators_long",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "b7efe0dcbda547e9937a2340e40b13d4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_fix_back_optic_1380_dashboard_task_chart_grouped_by_completed_at_reviewed_at_short": {
- "key": "fflag_fix_back_optic_1380_dashboard_task_chart_grouped_by_completed_at_reviewed_at_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5d10b576ced444f9ae782e07cd3d5ef2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_optic_1407_optimize_tasks_api_pagination_counts": {
- "key": "fflag_fix_back_optic_1407_optimize_tasks_api_pagination_counts",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "77f607e6b5354766ae6dbd701f57b849",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_back_plt_802_update_is_labeled_20062025_short": {
- "key": "fflag_fix_back_plt_802_update_is_labeled_20062025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "95a86359c8214f2aa0fbf57068fcf1e3",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_804_check_file_extension_11072025_short": {
- "key": "fflag_fix_back_plt_804_check_file_extension_11072025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "382135fcb4df4c33998987ccd60db1e9",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_807_batch_size_26062025_short": {
- "key": "fflag_fix_back_plt_807_batch_size_26062025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "5ae4ce8fdf2d40a8869ee2736fd8583e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_811_finished_task_number_01072025_short": {
- "key": "fflag_fix_back_plt_811_finished_task_number_01072025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7f13c327ad9e4ba9819c9a843b99ed4c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_816_recalculate_stats_batch_15072025_short": {
- "key": "fflag_fix_back_plt_816_recalculate_stats_batch_15072025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "24f0f8aa4b714711a38bb0fe9bffd6c5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_819_per_org_rate_limiter_09072025_short": {
- "key": "fflag_fix_back_plt_819_per_org_rate_limiter_09072025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "151d487f557a4b9982e815afd7cb3af4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_back_plt_825_rate_limiter_debug_14072025_short": {
- "key": "fflag_fix_back_plt_825_rate_limiter_debug_14072025_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6c4552af705d4da7b6c4112da50166d6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_back_plt_838_reimport_memory_improvement_05082025_short": {
- "key": "fflag_fix_back_plt_838_reimport_memory_improvement_05082025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "656e75d316e84294b3385bc6820f4669",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_840_redis_last_activity_29072025_short": {
- "key": "fflag_fix_back_plt_840_redis_last_activity_29072025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "df3aa47605a6499eadd337996c5338be",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_843_webhook_memory_improvement_12082025_short": {
- "key": "fflag_fix_back_plt_843_webhook_memory_improvement_12082025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "1003398c0b8c454dbfb78f6e9b5845f5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_863_remove_iterator_27082025_short": {
- "key": "fflag_fix_back_plt_863_remove_iterator_27082025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "bdfb77aefe4b4b01ab8125128c45fdb6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_870_import_from_storage_batch_28082025_short": {
- "key": "fflag_fix_back_plt_870_import_from_storage_batch_28082025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "1c977d7f8dbf482e9224e89dd287e8e1",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_893_project_list_oom_fix_02102025_short": {
- "key": "fflag_fix_back_plt_893_project_list_oom_fix_02102025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "99caa0953517427cadbadef27a97315c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_902_async_import_background_oom_fix_22092025_short": {
- "key": "fflag_fix_back_plt_902_async_import_background_oom_fix_22092025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "a90fb7d8cf2048d4ab45ed0b8e7f52fd",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_913_cache_annotator_queue_total_07102025_short": {
- "key": "fflag_fix_back_plt_913_cache_annotator_queue_total_07102025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6a17a708748344a2b39b2664bde851a3",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_913_cache_finished_task_number_06102025_short": {
- "key": "fflag_fix_back_plt_913_cache_finished_task_number_06102025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c31a2b219c734a85acfea5103f144fae",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_back_plt_914_projects_list_cache_sdk_09102025_short": {
- "key": "fflag_fix_back_plt_914_projects_list_cache_sdk_09102025_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "482919695c1d4166896badf1d9405427",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_bros_113_members_user_order_20250816": {
- "key": "fflag_fix_bros_113_members_user_order_20250816",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "05022b8c7b1d4acfa53373ff6fb08129",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_bros_528_num_tasks_with_annotations_short": {
- "key": "fflag_fix_bros_528_num_tasks_with_annotations_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "77ef8b7e1bb242eb8d37bba6630c6bf2",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_bros_95_drafts_from_other_users": {
- "key": "fflag_fix_bros_95_drafts_from_other_users",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "e14e78e3865a4fa0a4df7030ee14baaf",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_fit_1082_overlap_use_distinct_annotators": {
- "key": "fflag_fix_fit_1082_overlap_use_distinct_annotators",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d997d229777d4b7fa74796d017284f7d",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_dev_1284_auto_detect_undo_281022_short": {
- "key": "fflag_fix_front_dev_1284_auto_detect_undo_281022_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ae9a4fcd489640f1985457056b426a4e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_dev_2918_labeling_filtered_paragraphs_250822_short": {
- "key": "fflag_fix_front_dev_2918_labeling_filtered_paragraphs_250822_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "77a3e3714ab54abfbcf476f654783502",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_fix_front_dev_3377_image_regions_shift_on_resize_280922_short": {
- "key": "fflag_fix_front_dev_3377_image_regions_shift_on_resize_280922_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "d3f36f0fca084c568cef2d0ffe92c574",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_dev_3391_interactive_view_all": {
- "key": "fflag_fix_front_dev_3391_interactive_view_all",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "4a8dad5b7a9547b19136f766ff03376e",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_fix_front_dev_3793_relative_coords_short": {
- "key": "fflag_fix_front_dev_3793_relative_coords_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "cf155cb2859f4f21a69cc0c90b0559e6",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 6,
- "deleted": false
- },
- "fflag_fix_front_fit_31_synced_media_buffering": {
- "key": "fflag_fix_front_fit_31_synced_media_buffering",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6b052332b2924b2e8958631884347ba4",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_leap_32_zoom_perf_190923_short": {
- "key": "fflag_fix_front_leap_32_zoom_perf_190923_short",
- "on": true,
- "prerequisites": [],
- "targets": [
- {
- "contextKind": "user",
- "variation": 1,
- "values": [
- "mihajlo@heartex.e2e"
- ]
- }
- ],
- "contextTargets": [
- {
- "contextKind": "user",
- "variation": 1,
- "values": []
- }
- ],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "27d9dd66f4474b61b9ac5c0f03582209",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "fflag_fix_front_leap_443_select_annotation_once": {
- "key": "fflag_fix_front_leap_443_select_annotation_once",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "7fa01b9222564e5b9e3c415d48effd01",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_lsdv_4600_lead_time_27072023_short": {
- "key": "fflag_fix_front_lsdv_4600_lead_time_27072023_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 1
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "c732cda2ecf64b589fe2bdc90208e3ec",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- },
- "fflag_fix_front_lsdv_4620_memory_leaks_100723_short": {
- "key": "fflag_fix_front_lsdv_4620_memory_leaks_100723_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "991cf0497e2b4505a928709b04218633",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 7,
- "deleted": false
- },
- "fflag_fix_front_lsdv_4930_selection_tool_fixes_240423_short": {
- "key": "fflag_fix_front_lsdv_4930_selection_tool_fixes_240423_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "ea3270a37cdb42088d980ed1e4014bef",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_lsdv_4998_missed_dynamic_children_030523_short": {
- "key": "fflag_fix_front_lsdv_4998_missed_dynamic_children_030523_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fcec745463d34dafa13c350d9a6e852c",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_front_optic_1608_improve_video_frame_seek_precision_short": {
- "key": "fflag_fix_front_optic_1608_improve_video_frame_seek_precision_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "840ef429000b4d5e9656830ed46692cf",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_leap_2052_detect_empty_filters_at_next_task_endpoint_short": {
- "key": "fflag_fix_leap_2052_detect_empty_filters_at_next_task_endpoint_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "42b74824c185432fb0f4d76c2595480b",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_leap_246_multi_object_hotkeys_160124_short": {
- "key": "fflag_fix_leap_246_multi_object_hotkeys_160124_short",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "800fcd0d7d4541349fef5f59174d58b5",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_fix_leap_466_text_sanitization": {
- "key": "fflag_fix_leap_466_text_sanitization",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "224d52df373e4061b517235600063392",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 5,
- "deleted": false
- },
- "fflag_fix_optic_1259_lse_projects_read_apis_use_replica_short": {
- "key": "fflag_fix_optic_1259_lse_projects_read_apis_use_replica_short",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "380538fdddcb4899b65e93d8d6e99482",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_front_dia_1150_ddisco_sneak_preview": {
- "key": "fflag_front_dia_1150_ddisco_sneak_preview",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "6965c0995db048378c3513804fd02682",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_optic_all_optic_1938_storage_proxy": {
- "key": "fflag_optic_all_optic_1938_storage_proxy",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "1e0f07f7fc144f2dbce9df4460434415",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 8,
- "deleted": false
- },
- "fflag_root_13_annotation_results_filtering": {
- "key": "fflag_root_13_annotation_results_filtering",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "4ab31fe3b28f4abd90ac0558b7d41584",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_root_212_reduce_importstoragelink_counts": {
- "key": "fflag_root_212_reduce_importstoragelink_counts",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "47dce548c195496f8d1bd7bafd1cec23",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_root_223_optimize_delete_predictions": {
- "key": "fflag_root_223_optimize_delete_predictions",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "066b4d5b0746449c8f5a2e1a9a465022",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_root_43_prediction_results_filter": {
- "key": "fflag_root_43_prediction_results_filter",
- "on": true,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "3c7e43db933e4079b7e23affb0f64a37",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 3,
- "deleted": false
- },
- "fflag_root_45_better_user_filter": {
- "key": "fflag_root_45_better_user_filter",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "90a29371fb66450f8789bee910cf4e68",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fflag_utc_428_consensus_control_tag_agreement": {
- "key": "fflag_utc_428_consensus_control_tag_agreement",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": false,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "18a108bc0ad847afa56fbf59a57de1fb",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 2,
- "deleted": false
- },
- "fix_backend_dev_3134_exclude_deactivated_users": {
- "key": "fix_backend_dev_3134_exclude_deactivated_users",
- "on": false,
- "prerequisites": [],
- "targets": [],
- "contextTargets": [],
- "rules": [],
- "fallthrough": {
- "variation": 0
- },
- "offVariation": 1,
- "variations": [
- true,
- false
- ],
- "clientSideAvailability": {
- "usingMobileKey": true,
- "usingEnvironmentId": false
- },
- "clientSide": false,
- "salt": "fabfc44d04c6452aa4e1dee24b55af80",
- "trackEvents": false,
- "trackEventsFallthrough": false,
- "debugEventsUntilDate": null,
- "version": 4,
- "deleted": false
- }
- }
- }
|