feature_flags.json 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352
  1. {
  2. "segments": {},
  3. "flags": {
  4. "feat_front_dev_1752_notification_links_in_label_and_review_streams": {
  5. "key": "feat_front_dev_1752_notification_links_in_label_and_review_streams",
  6. "on": false,
  7. "prerequisites": [],
  8. "targets": [],
  9. "contextTargets": [],
  10. "rules": [],
  11. "fallthrough": {
  12. "variation": 0
  13. },
  14. "offVariation": 1,
  15. "variations": [
  16. true,
  17. false
  18. ],
  19. "clientSideAvailability": {
  20. "usingMobileKey": false,
  21. "usingEnvironmentId": false
  22. },
  23. "clientSide": false,
  24. "salt": "dde132d08b0841e8ac318318bc54e87f",
  25. "trackEvents": false,
  26. "trackEventsFallthrough": false,
  27. "debugEventsUntilDate": null,
  28. "version": 2,
  29. "deleted": false
  30. },
  31. "feat_front_dev_3260_alternative_shortcuts_for_video_naviagtion": {
  32. "key": "feat_front_dev_3260_alternative_shortcuts_for_video_naviagtion",
  33. "on": false,
  34. "prerequisites": [],
  35. "targets": [],
  36. "contextTargets": [],
  37. "rules": [],
  38. "fallthrough": {
  39. "variation": 0
  40. },
  41. "offVariation": 1,
  42. "variations": [
  43. true,
  44. false
  45. ],
  46. "clientSideAvailability": {
  47. "usingMobileKey": false,
  48. "usingEnvironmentId": false
  49. },
  50. "clientSide": false,
  51. "salt": "0cbf5484f8e04f70838106e3490ecb32",
  52. "trackEvents": false,
  53. "trackEventsFallthrough": false,
  54. "debugEventsUntilDate": null,
  55. "version": 2,
  56. "deleted": false
  57. },
  58. "feat_front_dev_399_lock_interface_when_trial_expired_short": {
  59. "key": "feat_front_dev_399_lock_interface_when_trial_expired_short",
  60. "on": false,
  61. "prerequisites": [],
  62. "targets": [],
  63. "contextTargets": [],
  64. "rules": [],
  65. "fallthrough": {
  66. "variation": 0
  67. },
  68. "offVariation": 1,
  69. "variations": [
  70. true,
  71. false
  72. ],
  73. "clientSideAvailability": {
  74. "usingMobileKey": false,
  75. "usingEnvironmentId": false
  76. },
  77. "clientSide": false,
  78. "salt": "fd80549f8ea84dbfbbf2bbe6daeffa01",
  79. "trackEvents": false,
  80. "trackEventsFallthrough": false,
  81. "debugEventsUntilDate": null,
  82. "version": 2,
  83. "deleted": false
  84. },
  85. "feat_optic_1098_annotation_history_lead_time_charts": {
  86. "key": "feat_optic_1098_annotation_history_lead_time_charts",
  87. "on": false,
  88. "prerequisites": [],
  89. "targets": [],
  90. "contextTargets": [],
  91. "rules": [],
  92. "fallthrough": {
  93. "variation": 0
  94. },
  95. "offVariation": 1,
  96. "variations": [
  97. true,
  98. false
  99. ],
  100. "clientSideAvailability": {
  101. "usingMobileKey": false,
  102. "usingEnvironmentId": false
  103. },
  104. "clientSide": false,
  105. "salt": "b876638e49394959acae27c1d37c4eee",
  106. "trackEvents": false,
  107. "trackEventsFallthrough": false,
  108. "debugEventsUntilDate": null,
  109. "version": 3,
  110. "deleted": false
  111. },
  112. "ff_back_2004_async_review_24032022_short": {
  113. "key": "ff_back_2004_async_review_24032022_short",
  114. "on": false,
  115. "prerequisites": [],
  116. "targets": [],
  117. "contextTargets": [],
  118. "rules": [],
  119. "fallthrough": {
  120. "variation": 0
  121. },
  122. "offVariation": 1,
  123. "variations": [
  124. true,
  125. false
  126. ],
  127. "clientSideAvailability": {
  128. "usingMobileKey": false,
  129. "usingEnvironmentId": false
  130. },
  131. "clientSide": false,
  132. "salt": "2145a3e956e645f299e16e90b6e54e89",
  133. "trackEvents": false,
  134. "trackEventsFallthrough": false,
  135. "debugEventsUntilDate": null,
  136. "version": 4,
  137. "deleted": false
  138. },
  139. "ff_back_2884_comments_notifications_02092022_short": {
  140. "key": "ff_back_2884_comments_notifications_02092022_short",
  141. "on": false,
  142. "prerequisites": [],
  143. "targets": [],
  144. "contextTargets": [],
  145. "rules": [],
  146. "fallthrough": {
  147. "variation": 0
  148. },
  149. "offVariation": 1,
  150. "variations": [
  151. true,
  152. false
  153. ],
  154. "clientSideAvailability": {
  155. "usingMobileKey": false,
  156. "usingEnvironmentId": false
  157. },
  158. "clientSide": false,
  159. "salt": "1a1ba4d3a3ea454ebce1626dabe53aa5",
  160. "trackEvents": false,
  161. "trackEventsFallthrough": false,
  162. "debugEventsUntilDate": null,
  163. "version": 4,
  164. "deleted": false
  165. },
  166. "ff_back_DEV_3374_review_query_160922_short": {
  167. "key": "ff_back_DEV_3374_review_query_160922_short",
  168. "on": false,
  169. "prerequisites": [],
  170. "targets": [],
  171. "contextTargets": [],
  172. "rules": [],
  173. "fallthrough": {
  174. "variation": 0
  175. },
  176. "offVariation": 1,
  177. "variations": [
  178. true,
  179. false
  180. ],
  181. "clientSideAvailability": {
  182. "usingMobileKey": false,
  183. "usingEnvironmentId": false
  184. },
  185. "clientSide": false,
  186. "salt": "028a3e3aff9b41869d62269fcf599e64",
  187. "trackEvents": false,
  188. "trackEventsFallthrough": false,
  189. "debugEventsUntilDate": null,
  190. "version": 3,
  191. "deleted": false
  192. },
  193. "ff_back_dev_1417_start_training_mlbackend_webhooks_250122_long": {
  194. "key": "ff_back_dev_1417_start_training_mlbackend_webhooks_250122_long",
  195. "on": true,
  196. "prerequisites": [],
  197. "targets": [],
  198. "contextTargets": [],
  199. "rules": [],
  200. "fallthrough": {
  201. "variation": 0
  202. },
  203. "offVariation": 1,
  204. "variations": [
  205. true,
  206. false
  207. ],
  208. "clientSideAvailability": {
  209. "usingMobileKey": false,
  210. "usingEnvironmentId": false
  211. },
  212. "clientSide": false,
  213. "salt": "5e82b5b9641a4474bb97f54919b9f47a",
  214. "trackEvents": false,
  215. "trackEventsFallthrough": false,
  216. "debugEventsUntilDate": null,
  217. "version": 5,
  218. "deleted": false
  219. },
  220. "ff_back_dev_1948_reviewed_status_16052022_short": {
  221. "key": "ff_back_dev_1948_reviewed_status_16052022_short",
  222. "on": false,
  223. "prerequisites": [],
  224. "targets": [],
  225. "contextTargets": [],
  226. "rules": [],
  227. "fallthrough": {
  228. "variation": 0
  229. },
  230. "offVariation": 1,
  231. "variations": [
  232. true,
  233. false
  234. ],
  235. "clientSideAvailability": {
  236. "usingMobileKey": false,
  237. "usingEnvironmentId": false
  238. },
  239. "clientSide": false,
  240. "salt": "fbdfa98516e2449e9cf58d5368f73771",
  241. "trackEvents": false,
  242. "trackEventsFallthrough": false,
  243. "debugEventsUntilDate": null,
  244. "version": 5,
  245. "deleted": false
  246. },
  247. "ff_back_dev_2362_project_credentials_060722_short": {
  248. "key": "ff_back_dev_2362_project_credentials_060722_short",
  249. "on": false,
  250. "prerequisites": [],
  251. "targets": [],
  252. "contextTargets": [],
  253. "rules": [],
  254. "fallthrough": {
  255. "variation": 0
  256. },
  257. "offVariation": 1,
  258. "variations": [
  259. true,
  260. false
  261. ],
  262. "clientSideAvailability": {
  263. "usingMobileKey": false,
  264. "usingEnvironmentId": false
  265. },
  266. "clientSide": false,
  267. "salt": "05092a9cc7fc428b9b6520ffc0d506af",
  268. "trackEvents": false,
  269. "trackEventsFallthrough": false,
  270. "debugEventsUntilDate": null,
  271. "version": 3,
  272. "deleted": false
  273. },
  274. "ff_back_dev_2762_textarea_weights_30062022_short": {
  275. "key": "ff_back_dev_2762_textarea_weights_30062022_short",
  276. "on": true,
  277. "prerequisites": [],
  278. "targets": [],
  279. "contextTargets": [],
  280. "rules": [],
  281. "fallthrough": {
  282. "variation": 0
  283. },
  284. "offVariation": 1,
  285. "variations": [
  286. true,
  287. false
  288. ],
  289. "clientSideAvailability": {
  290. "usingMobileKey": false,
  291. "usingEnvironmentId": false
  292. },
  293. "clientSide": false,
  294. "salt": "8371d41f39024d86b1315cd37c2dc553",
  295. "trackEvents": false,
  296. "trackEventsFallthrough": false,
  297. "debugEventsUntilDate": null,
  298. "version": 5,
  299. "deleted": false
  300. },
  301. "ff_back_dev_4664_remove_storage_file_on_export_delete_29032023_short": {
  302. "key": "ff_back_dev_4664_remove_storage_file_on_export_delete_29032023_short",
  303. "on": true,
  304. "prerequisites": [],
  305. "targets": [],
  306. "contextTargets": [],
  307. "rules": [],
  308. "fallthrough": {
  309. "variation": 0
  310. },
  311. "offVariation": 1,
  312. "variations": [
  313. true,
  314. false
  315. ],
  316. "clientSideAvailability": {
  317. "usingMobileKey": false,
  318. "usingEnvironmentId": false
  319. },
  320. "clientSide": false,
  321. "salt": "b67cb5a44e0c45259e82cc9404421fcb",
  322. "trackEvents": false,
  323. "trackEventsFallthrough": false,
  324. "debugEventsUntilDate": null,
  325. "version": 3,
  326. "deleted": false
  327. },
  328. "ff_back_experimental_features": {
  329. "key": "ff_back_experimental_features",
  330. "on": false,
  331. "prerequisites": [],
  332. "targets": [],
  333. "contextTargets": [],
  334. "rules": [],
  335. "fallthrough": {
  336. "variation": 0
  337. },
  338. "offVariation": 1,
  339. "variations": [
  340. true,
  341. false
  342. ],
  343. "clientSideAvailability": {
  344. "usingMobileKey": false,
  345. "usingEnvironmentId": false
  346. },
  347. "clientSide": false,
  348. "salt": "aaf0e626e3bc44de99c620ec24df9f96",
  349. "trackEvents": false,
  350. "trackEventsFallthrough": false,
  351. "debugEventsUntilDate": null,
  352. "version": 3,
  353. "deleted": false
  354. },
  355. "ff_fix_back_dev_3342_storage_scan_with_invalid_annotations": {
  356. "key": "ff_fix_back_dev_3342_storage_scan_with_invalid_annotations",
  357. "on": true,
  358. "prerequisites": [],
  359. "targets": [],
  360. "contextTargets": [],
  361. "rules": [],
  362. "fallthrough": {
  363. "variation": 0
  364. },
  365. "offVariation": 1,
  366. "variations": [
  367. true,
  368. false
  369. ],
  370. "clientSideAvailability": {
  371. "usingMobileKey": false,
  372. "usingEnvironmentId": false
  373. },
  374. "clientSide": false,
  375. "salt": "bb6f4889c59d47faa4145a8a5a694d37",
  376. "trackEvents": false,
  377. "trackEventsFallthrough": false,
  378. "debugEventsUntilDate": null,
  379. "version": 4,
  380. "deleted": false
  381. },
  382. "ff_front_dev_1442_unselect_shape_on_click_outside_080622_short": {
  383. "key": "ff_front_dev_1442_unselect_shape_on_click_outside_080622_short",
  384. "on": false,
  385. "prerequisites": [],
  386. "targets": [],
  387. "contextTargets": [],
  388. "rules": [],
  389. "fallthrough": {
  390. "variation": 0
  391. },
  392. "offVariation": 1,
  393. "variations": [
  394. true,
  395. false
  396. ],
  397. "clientSideAvailability": {
  398. "usingMobileKey": false,
  399. "usingEnvironmentId": false
  400. },
  401. "clientSide": false,
  402. "salt": "27301e1167d14c31b04495b0bde029d2",
  403. "trackEvents": false,
  404. "trackEventsFallthrough": false,
  405. "debugEventsUntilDate": null,
  406. "version": 7,
  407. "deleted": false
  408. },
  409. "ff_front_dev_1480_created_on_in_review_180122_short": {
  410. "key": "ff_front_dev_1480_created_on_in_review_180122_short",
  411. "on": false,
  412. "prerequisites": [],
  413. "targets": [],
  414. "contextTargets": [],
  415. "rules": [],
  416. "fallthrough": {
  417. "variation": 0
  418. },
  419. "offVariation": 1,
  420. "variations": [
  421. true,
  422. false
  423. ],
  424. "clientSideAvailability": {
  425. "usingMobileKey": false,
  426. "usingEnvironmentId": false
  427. },
  428. "clientSide": false,
  429. "salt": "de557f03d92c49b9926cc15472bf2edd",
  430. "trackEvents": false,
  431. "trackEventsFallthrough": false,
  432. "debugEventsUntilDate": null,
  433. "version": 6,
  434. "deleted": false
  435. },
  436. "ff_front_dev_1536_taxonomy_user_labels_150222_long": {
  437. "key": "ff_front_dev_1536_taxonomy_user_labels_150222_long",
  438. "on": true,
  439. "prerequisites": [],
  440. "targets": [],
  441. "contextTargets": [],
  442. "rules": [],
  443. "fallthrough": {
  444. "variation": 0
  445. },
  446. "offVariation": 1,
  447. "variations": [
  448. true,
  449. false
  450. ],
  451. "clientSideAvailability": {
  452. "usingMobileKey": false,
  453. "usingEnvironmentId": false
  454. },
  455. "clientSide": false,
  456. "salt": "396498db51644f0abf7f5de063bea3d0",
  457. "trackEvents": false,
  458. "trackEventsFallthrough": false,
  459. "debugEventsUntilDate": null,
  460. "version": 6,
  461. "deleted": false
  462. },
  463. "ff_front_dev_1682_model_version_dropdown_070622_short": {
  464. "key": "ff_front_dev_1682_model_version_dropdown_070622_short",
  465. "on": false,
  466. "prerequisites": [],
  467. "targets": [],
  468. "contextTargets": [],
  469. "rules": [],
  470. "fallthrough": {
  471. "variation": 0
  472. },
  473. "offVariation": 1,
  474. "variations": [
  475. true,
  476. false
  477. ],
  478. "clientSideAvailability": {
  479. "usingMobileKey": false,
  480. "usingEnvironmentId": false
  481. },
  482. "clientSide": false,
  483. "salt": "58f4f819d52b461b9e833cdb896311d6",
  484. "trackEvents": false,
  485. "trackEventsFallthrough": false,
  486. "debugEventsUntilDate": null,
  487. "version": 9,
  488. "deleted": false
  489. },
  490. "ff_front_dev_2186_comments_for_update": {
  491. "key": "ff_front_dev_2186_comments_for_update",
  492. "on": false,
  493. "prerequisites": [],
  494. "targets": [],
  495. "contextTargets": [],
  496. "rules": [],
  497. "fallthrough": {
  498. "variation": 1
  499. },
  500. "offVariation": 1,
  501. "variations": [
  502. true,
  503. false
  504. ],
  505. "clientSideAvailability": {
  506. "usingMobileKey": false,
  507. "usingEnvironmentId": false
  508. },
  509. "clientSide": false,
  510. "salt": "29db86dba7204e519da03f91d8fc59ed",
  511. "trackEvents": false,
  512. "trackEventsFallthrough": false,
  513. "debugEventsUntilDate": null,
  514. "version": 7,
  515. "deleted": false
  516. },
  517. "ff_front_dev_2669_paragraph_author_filter_210622_short": {
  518. "key": "ff_front_dev_2669_paragraph_author_filter_210622_short",
  519. "on": true,
  520. "prerequisites": [],
  521. "targets": [],
  522. "contextTargets": [],
  523. "rules": [],
  524. "fallthrough": {
  525. "variation": 0
  526. },
  527. "offVariation": 1,
  528. "variations": [
  529. true,
  530. false
  531. ],
  532. "clientSideAvailability": {
  533. "usingMobileKey": false,
  534. "usingEnvironmentId": false
  535. },
  536. "clientSide": false,
  537. "salt": "7d2dab6b947d47b0a833dc98367a6cd4",
  538. "trackEvents": false,
  539. "trackEventsFallthrough": false,
  540. "debugEventsUntilDate": null,
  541. "version": 5,
  542. "deleted": false
  543. },
  544. "ff_front_dev_2671_anchor_rotate_bbox_010722_short": {
  545. "key": "ff_front_dev_2671_anchor_rotate_bbox_010722_short",
  546. "on": false,
  547. "prerequisites": [],
  548. "targets": [],
  549. "contextTargets": [],
  550. "rules": [],
  551. "fallthrough": {
  552. "variation": 0
  553. },
  554. "offVariation": 1,
  555. "variations": [
  556. true,
  557. false
  558. ],
  559. "clientSideAvailability": {
  560. "usingMobileKey": false,
  561. "usingEnvironmentId": false
  562. },
  563. "clientSide": false,
  564. "salt": "0f7496343ddf4a819ef9f560b479d4c0",
  565. "trackEvents": false,
  566. "trackEventsFallthrough": false,
  567. "debugEventsUntilDate": null,
  568. "version": 2,
  569. "deleted": false
  570. },
  571. "ff_front_optic_1494_saved_templates_to_custom_templates": {
  572. "key": "ff_front_optic_1494_saved_templates_to_custom_templates",
  573. "on": true,
  574. "prerequisites": [],
  575. "targets": [],
  576. "contextTargets": [],
  577. "rules": [],
  578. "fallthrough": {
  579. "variation": 0
  580. },
  581. "offVariation": 1,
  582. "variations": [
  583. true,
  584. false
  585. ],
  586. "clientSideAvailability": {
  587. "usingMobileKey": false,
  588. "usingEnvironmentId": false
  589. },
  590. "clientSide": false,
  591. "salt": "bd4fd2af88bc47fa8d0b7c7648158e4d",
  592. "trackEvents": false,
  593. "trackEventsFallthrough": false,
  594. "debugEventsUntilDate": null,
  595. "version": 4,
  596. "deleted": false
  597. },
  598. "ff_front_optic_1610_ask_ai_questions": {
  599. "key": "ff_front_optic_1610_ask_ai_questions",
  600. "on": false,
  601. "prerequisites": [],
  602. "targets": [],
  603. "contextTargets": [],
  604. "rules": [],
  605. "fallthrough": {
  606. "variation": 0
  607. },
  608. "offVariation": 1,
  609. "variations": [
  610. true,
  611. false
  612. ],
  613. "clientSideAvailability": {
  614. "usingMobileKey": false,
  615. "usingEnvironmentId": false
  616. },
  617. "clientSide": false,
  618. "salt": "5a8d9cd75b6c4a5ea5985316ab34b25d",
  619. "trackEvents": false,
  620. "trackEventsFallthrough": false,
  621. "debugEventsUntilDate": null,
  622. "version": 3,
  623. "deleted": false
  624. },
  625. "fflag-feat-dev-2887-comments-ui-editor-short": {
  626. "key": "fflag-feat-dev-2887-comments-ui-editor-short",
  627. "on": false,
  628. "prerequisites": [],
  629. "targets": [],
  630. "contextTargets": [],
  631. "rules": [],
  632. "fallthrough": {
  633. "variation": 0
  634. },
  635. "offVariation": 1,
  636. "variations": [
  637. true,
  638. false
  639. ],
  640. "clientSideAvailability": {
  641. "usingMobileKey": false,
  642. "usingEnvironmentId": false
  643. },
  644. "clientSide": false,
  645. "salt": "7b49c8b7fb8a4bb6b2836e3cdeeee5df",
  646. "trackEvents": false,
  647. "trackEventsFallthrough": false,
  648. "debugEventsUntilDate": null,
  649. "version": 9,
  650. "deleted": false
  651. },
  652. "fflag-feat-dev-3034-comments-with-drafts-short": {
  653. "key": "fflag-feat-dev-3034-comments-with-drafts-short",
  654. "on": false,
  655. "prerequisites": [],
  656. "targets": [],
  657. "contextTargets": [],
  658. "rules": [],
  659. "fallthrough": {
  660. "variation": 0
  661. },
  662. "offVariation": 1,
  663. "variations": [
  664. true,
  665. false
  666. ],
  667. "clientSideAvailability": {
  668. "usingMobileKey": false,
  669. "usingEnvironmentId": false
  670. },
  671. "clientSide": false,
  672. "salt": "4070f7702bc84aa4a4ccf28fb92d3e7a",
  673. "trackEvents": false,
  674. "trackEventsFallthrough": false,
  675. "debugEventsUntilDate": null,
  676. "version": 6,
  677. "deleted": false
  678. },
  679. "fflag-feat-front-dev-2866-free-trial-invite-short": {
  680. "key": "fflag-feat-front-dev-2866-free-trial-invite-short",
  681. "on": false,
  682. "prerequisites": [],
  683. "targets": [],
  684. "contextTargets": [],
  685. "rules": [],
  686. "fallthrough": {
  687. "variation": 0
  688. },
  689. "offVariation": 1,
  690. "variations": [
  691. true,
  692. false
  693. ],
  694. "clientSideAvailability": {
  695. "usingMobileKey": false,
  696. "usingEnvironmentId": false
  697. },
  698. "clientSide": false,
  699. "salt": "82b06caa7c0242f780dbdf5e1f537b45",
  700. "trackEvents": false,
  701. "trackEventsFallthrough": false,
  702. "debugEventsUntilDate": null,
  703. "version": 2,
  704. "deleted": false
  705. },
  706. "fflag-feat-front-dev-3051-trial-experience": {
  707. "key": "fflag-feat-front-dev-3051-trial-experience",
  708. "on": false,
  709. "prerequisites": [],
  710. "targets": [],
  711. "contextTargets": [],
  712. "rules": [],
  713. "fallthrough": {
  714. "variation": 0
  715. },
  716. "offVariation": 1,
  717. "variations": [
  718. true,
  719. false
  720. ],
  721. "clientSideAvailability": {
  722. "usingMobileKey": false,
  723. "usingEnvironmentId": false
  724. },
  725. "clientSide": false,
  726. "salt": "9fe785a26fea4f3bad0c25781f980ac4",
  727. "trackEvents": false,
  728. "trackEventsFallthrough": false,
  729. "debugEventsUntilDate": null,
  730. "version": 3,
  731. "deleted": false
  732. },
  733. "fflag__feature_develop__prompts__dia_1829_jwt_token_auth": {
  734. "key": "fflag__feature_develop__prompts__dia_1829_jwt_token_auth",
  735. "on": true,
  736. "prerequisites": [],
  737. "targets": [],
  738. "contextTargets": [],
  739. "rules": [],
  740. "fallthrough": {
  741. "variation": 0
  742. },
  743. "offVariation": 1,
  744. "variations": [
  745. true,
  746. false
  747. ],
  748. "clientSideAvailability": {
  749. "usingMobileKey": false,
  750. "usingEnvironmentId": false
  751. },
  752. "clientSide": false,
  753. "salt": "e907cff690ed4dc490a6104c7dca73d9",
  754. "trackEvents": false,
  755. "trackEventsFallthrough": false,
  756. "debugEventsUntilDate": null,
  757. "version": 7,
  758. "deleted": false
  759. },
  760. "fflag__feature_develop__prompts__dia_1868_azure_ai_foundry": {
  761. "key": "fflag__feature_develop__prompts__dia_1868_azure_ai_foundry",
  762. "on": true,
  763. "prerequisites": [],
  764. "targets": [],
  765. "contextTargets": [],
  766. "rules": [],
  767. "fallthrough": {
  768. "variation": 0
  769. },
  770. "offVariation": 1,
  771. "variations": [
  772. true,
  773. false
  774. ],
  775. "clientSideAvailability": {
  776. "usingMobileKey": false,
  777. "usingEnvironmentId": false
  778. },
  779. "clientSide": false,
  780. "salt": "b08fc450f77d4fd7828957aeba9cdfdb",
  781. "trackEvents": false,
  782. "trackEventsFallthrough": false,
  783. "debugEventsUntilDate": null,
  784. "version": 4,
  785. "deleted": false
  786. },
  787. "fflag_all_feat_bros_421_review_random_and_limit_tasks": {
  788. "key": "fflag_all_feat_bros_421_review_random_and_limit_tasks",
  789. "on": true,
  790. "prerequisites": [],
  791. "targets": [],
  792. "contextTargets": [],
  793. "rules": [],
  794. "fallthrough": {
  795. "variation": 0
  796. },
  797. "offVariation": 1,
  798. "variations": [
  799. true,
  800. false
  801. ],
  802. "clientSideAvailability": {
  803. "usingMobileKey": false,
  804. "usingEnvironmentId": false
  805. },
  806. "clientSide": false,
  807. "salt": "db7b096d5f524fb591d122b4aaf9bc36",
  808. "trackEvents": false,
  809. "trackEventsFallthrough": false,
  810. "debugEventsUntilDate": null,
  811. "version": 4,
  812. "deleted": false
  813. },
  814. "fflag_all_feat_dia_1777_ls_homepage_short": {
  815. "key": "fflag_all_feat_dia_1777_ls_homepage_short",
  816. "on": true,
  817. "prerequisites": [],
  818. "targets": [],
  819. "contextTargets": [],
  820. "rules": [],
  821. "fallthrough": {
  822. "variation": 0
  823. },
  824. "offVariation": 1,
  825. "variations": [
  826. true,
  827. false
  828. ],
  829. "clientSideAvailability": {
  830. "usingMobileKey": false,
  831. "usingEnvironmentId": false
  832. },
  833. "clientSide": false,
  834. "salt": "3f344436b8be40069db2f0031edb8dfa",
  835. "trackEvents": false,
  836. "trackEventsFallthrough": false,
  837. "debugEventsUntilDate": null,
  838. "version": 5,
  839. "deleted": false
  840. },
  841. "fflag_all_feat_utc_112_open_in_starter_cloud": {
  842. "key": "fflag_all_feat_utc_112_open_in_starter_cloud",
  843. "on": false,
  844. "prerequisites": [],
  845. "targets": [],
  846. "contextTargets": [],
  847. "rules": [],
  848. "fallthrough": {
  849. "variation": 0
  850. },
  851. "offVariation": 1,
  852. "variations": [
  853. true,
  854. false
  855. ],
  856. "clientSideAvailability": {
  857. "usingMobileKey": false,
  858. "usingEnvironmentId": false
  859. },
  860. "clientSide": false,
  861. "salt": "f4b7b0d87c2f413c819e08552b19c4ac",
  862. "trackEvents": false,
  863. "trackEventsFallthrough": false,
  864. "debugEventsUntilDate": null,
  865. "version": 2,
  866. "deleted": false
  867. },
  868. "fflag_all_feat_utc_204_users_performance_improvements_in_dm_for_large_orgs": {
  869. "key": "fflag_all_feat_utc_204_users_performance_improvements_in_dm_for_large_orgs",
  870. "on": false,
  871. "prerequisites": [],
  872. "targets": [],
  873. "contextTargets": [],
  874. "rules": [],
  875. "fallthrough": {
  876. "variation": 0
  877. },
  878. "offVariation": 1,
  879. "variations": [
  880. true,
  881. false
  882. ],
  883. "clientSideAvailability": {
  884. "usingMobileKey": false,
  885. "usingEnvironmentId": false
  886. },
  887. "clientSide": false,
  888. "salt": "f171bc9c5fa94159af06ea154aa175ea",
  889. "trackEvents": false,
  890. "trackEventsFallthrough": false,
  891. "debugEventsUntilDate": null,
  892. "version": 4,
  893. "deleted": false
  894. },
  895. "fflag_all_feat_utc_274_permissions_improvements": {
  896. "key": "fflag_all_feat_utc_274_permissions_improvements",
  897. "on": false,
  898. "prerequisites": [],
  899. "targets": [],
  900. "contextTargets": [],
  901. "rules": [],
  902. "fallthrough": {
  903. "variation": 0
  904. },
  905. "offVariation": 1,
  906. "variations": [
  907. true,
  908. false
  909. ],
  910. "clientSideAvailability": {
  911. "usingMobileKey": false,
  912. "usingEnvironmentId": false
  913. },
  914. "clientSide": false,
  915. "salt": "6480d003587f42d285dac2911a8819f4",
  916. "trackEvents": false,
  917. "trackEventsFallthrough": false,
  918. "debugEventsUntilDate": null,
  919. "version": 2,
  920. "deleted": false
  921. },
  922. "fflag_bros_660_members_review_accepted_rejected": {
  923. "key": "fflag_bros_660_members_review_accepted_rejected",
  924. "on": true,
  925. "prerequisites": [],
  926. "targets": [],
  927. "contextTargets": [],
  928. "rules": [],
  929. "fallthrough": {
  930. "variation": 0
  931. },
  932. "offVariation": 1,
  933. "variations": [
  934. true,
  935. false
  936. ],
  937. "clientSideAvailability": {
  938. "usingMobileKey": false,
  939. "usingEnvironmentId": false
  940. },
  941. "clientSide": false,
  942. "salt": "d3951d9ac5b0492a97ab85ca55a348a5",
  943. "trackEvents": false,
  944. "trackEventsFallthrough": false,
  945. "debugEventsUntilDate": null,
  946. "version": 3,
  947. "deleted": false
  948. },
  949. "fflag_dev_disable_polling_killswitch_short": {
  950. "key": "fflag_dev_disable_polling_killswitch_short",
  951. "on": false,
  952. "prerequisites": [],
  953. "targets": [],
  954. "contextTargets": [],
  955. "rules": [],
  956. "fallthrough": {
  957. "variation": 0
  958. },
  959. "offVariation": 1,
  960. "variations": [
  961. true,
  962. false
  963. ],
  964. "clientSideAvailability": {
  965. "usingMobileKey": false,
  966. "usingEnvironmentId": false
  967. },
  968. "clientSide": false,
  969. "salt": "884c26388a324c9b9c26faa10251d386",
  970. "trackEvents": false,
  971. "trackEventsFallthrough": false,
  972. "debugEventsUntilDate": null,
  973. "version": 2,
  974. "deleted": false
  975. },
  976. "fflag_feat_1178_annotation_time_in_member_analytics": {
  977. "key": "fflag_feat_1178_annotation_time_in_member_analytics",
  978. "on": true,
  979. "prerequisites": [],
  980. "targets": [],
  981. "contextTargets": [],
  982. "rules": [],
  983. "fallthrough": {
  984. "variation": 0
  985. },
  986. "offVariation": 1,
  987. "variations": [
  988. true,
  989. false
  990. ],
  991. "clientSideAvailability": {
  992. "usingMobileKey": false,
  993. "usingEnvironmentId": false
  994. },
  995. "clientSide": false,
  996. "salt": "bb78b25e905a426394dd23b1f912d408",
  997. "trackEvents": false,
  998. "trackEventsFallthrough": false,
  999. "debugEventsUntilDate": null,
  1000. "version": 3,
  1001. "deleted": false
  1002. },
  1003. "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_long": {
  1004. "key": "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_long",
  1005. "on": false,
  1006. "prerequisites": [],
  1007. "targets": [],
  1008. "contextTargets": [],
  1009. "rules": [],
  1010. "fallthrough": {
  1011. "variation": 0
  1012. },
  1013. "offVariation": 1,
  1014. "variations": [
  1015. true,
  1016. false
  1017. ],
  1018. "clientSideAvailability": {
  1019. "usingMobileKey": false,
  1020. "usingEnvironmentId": false
  1021. },
  1022. "clientSide": false,
  1023. "salt": "6fd7f4be8bda46e897631d662f980c06",
  1024. "trackEvents": false,
  1025. "trackEventsFallthrough": false,
  1026. "debugEventsUntilDate": null,
  1027. "version": 2,
  1028. "deleted": false
  1029. },
  1030. "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_short_async_presets_ks": {
  1031. "key": "fflag_feat_all_dia_1576_prompts_easy_breezy_onboarding_short_async_presets_ks",
  1032. "on": false,
  1033. "prerequisites": [],
  1034. "targets": [],
  1035. "contextTargets": [],
  1036. "rules": [],
  1037. "fallthrough": {
  1038. "variation": 0
  1039. },
  1040. "offVariation": 1,
  1041. "variations": [
  1042. true,
  1043. false
  1044. ],
  1045. "clientSideAvailability": {
  1046. "usingMobileKey": false,
  1047. "usingEnvironmentId": false
  1048. },
  1049. "clientSide": false,
  1050. "salt": "7c6d7ec1634e4d24acdf53fed7b23c54",
  1051. "trackEvents": false,
  1052. "trackEventsFallthrough": false,
  1053. "debugEventsUntilDate": null,
  1054. "version": 2,
  1055. "deleted": false
  1056. },
  1057. "fflag_feat_all_dia_1700_pinned_organization_sidebar": {
  1058. "key": "fflag_feat_all_dia_1700_pinned_organization_sidebar",
  1059. "on": false,
  1060. "prerequisites": [],
  1061. "targets": [],
  1062. "contextTargets": [],
  1063. "rules": [],
  1064. "fallthrough": {
  1065. "variation": 0
  1066. },
  1067. "offVariation": 1,
  1068. "variations": [
  1069. true,
  1070. false
  1071. ],
  1072. "clientSideAvailability": {
  1073. "usingMobileKey": false,
  1074. "usingEnvironmentId": false
  1075. },
  1076. "clientSide": false,
  1077. "salt": "b5d2f96acd364480a4b631b6836b3f21",
  1078. "trackEvents": false,
  1079. "trackEventsFallthrough": false,
  1080. "debugEventsUntilDate": null,
  1081. "version": 2,
  1082. "deleted": false
  1083. },
  1084. "fflag_feat_all_dia_2067_tasks_table_component": {
  1085. "key": "fflag_feat_all_dia_2067_tasks_table_component",
  1086. "on": false,
  1087. "prerequisites": [],
  1088. "targets": [],
  1089. "contextTargets": [],
  1090. "rules": [],
  1091. "fallthrough": {
  1092. "variation": 0
  1093. },
  1094. "offVariation": 1,
  1095. "variations": [
  1096. true,
  1097. false
  1098. ],
  1099. "clientSideAvailability": {
  1100. "usingMobileKey": false,
  1101. "usingEnvironmentId": false
  1102. },
  1103. "clientSide": false,
  1104. "salt": "2130aa7856c54c8ba9d3745630bd8ae8",
  1105. "trackEvents": false,
  1106. "trackEventsFallthrough": false,
  1107. "debugEventsUntilDate": null,
  1108. "version": 3,
  1109. "deleted": false
  1110. },
  1111. "fflag_feat_all_dia_835_prompter_workflow_long": {
  1112. "key": "fflag_feat_all_dia_835_prompter_workflow_long",
  1113. "on": false,
  1114. "prerequisites": [],
  1115. "targets": [],
  1116. "contextTargets": [],
  1117. "rules": [],
  1118. "fallthrough": {
  1119. "variation": 0
  1120. },
  1121. "offVariation": 1,
  1122. "variations": [
  1123. true,
  1124. false
  1125. ],
  1126. "clientSideAvailability": {
  1127. "usingMobileKey": false,
  1128. "usingEnvironmentId": false
  1129. },
  1130. "clientSide": false,
  1131. "salt": "efa1b3e7ae7e4b5fa37657178a5b233e",
  1132. "trackEvents": false,
  1133. "trackEventsFallthrough": false,
  1134. "debugEventsUntilDate": null,
  1135. "version": 4,
  1136. "deleted": false
  1137. },
  1138. "fflag_feat_all_fit_1137_annotation_time": {
  1139. "key": "fflag_feat_all_fit_1137_annotation_time",
  1140. "on": false,
  1141. "prerequisites": [],
  1142. "targets": [],
  1143. "contextTargets": [],
  1144. "rules": [],
  1145. "fallthrough": {
  1146. "variation": 0
  1147. },
  1148. "offVariation": 1,
  1149. "variations": [
  1150. true,
  1151. false
  1152. ],
  1153. "clientSideAvailability": {
  1154. "usingMobileKey": false,
  1155. "usingEnvironmentId": false
  1156. },
  1157. "clientSide": false,
  1158. "salt": "e04409b856b34bd999d0081d04a4866b",
  1159. "trackEvents": false,
  1160. "trackEventsFallthrough": false,
  1161. "debugEventsUntilDate": null,
  1162. "version": 2,
  1163. "deleted": false
  1164. },
  1165. "fflag_feat_all_fit_162_workspaces_projects_ui_improvements": {
  1166. "key": "fflag_feat_all_fit_162_workspaces_projects_ui_improvements",
  1167. "on": true,
  1168. "prerequisites": [],
  1169. "targets": [],
  1170. "contextTargets": [],
  1171. "rules": [],
  1172. "fallthrough": {
  1173. "variation": 0
  1174. },
  1175. "offVariation": 1,
  1176. "variations": [
  1177. true,
  1178. false
  1179. ],
  1180. "clientSideAvailability": {
  1181. "usingMobileKey": false,
  1182. "usingEnvironmentId": false
  1183. },
  1184. "clientSide": false,
  1185. "salt": "ca41890152ee4be99fcd269fc6e9b0d6",
  1186. "trackEvents": false,
  1187. "trackEventsFallthrough": false,
  1188. "debugEventsUntilDate": null,
  1189. "version": 4,
  1190. "deleted": false
  1191. },
  1192. "fflag_feat_all_fit_524_review_time_chart": {
  1193. "key": "fflag_feat_all_fit_524_review_time_chart",
  1194. "on": false,
  1195. "prerequisites": [],
  1196. "targets": [],
  1197. "contextTargets": [],
  1198. "rules": [],
  1199. "fallthrough": {
  1200. "variation": 0
  1201. },
  1202. "offVariation": 1,
  1203. "variations": [
  1204. true,
  1205. false
  1206. ],
  1207. "clientSideAvailability": {
  1208. "usingMobileKey": false,
  1209. "usingEnvironmentId": false
  1210. },
  1211. "clientSide": false,
  1212. "salt": "87fc3bfb69564792948ff63d019e1242",
  1213. "trackEvents": false,
  1214. "trackEventsFallthrough": false,
  1215. "debugEventsUntilDate": null,
  1216. "version": 2,
  1217. "deleted": false
  1218. },
  1219. "fflag_feat_all_fit_725_command_palette_short": {
  1220. "key": "fflag_feat_all_fit_725_command_palette_short",
  1221. "on": false,
  1222. "prerequisites": [],
  1223. "targets": [],
  1224. "contextTargets": [],
  1225. "rules": [],
  1226. "fallthrough": {
  1227. "variation": 0
  1228. },
  1229. "offVariation": 1,
  1230. "variations": [
  1231. true,
  1232. false
  1233. ],
  1234. "clientSideAvailability": {
  1235. "usingMobileKey": false,
  1236. "usingEnvironmentId": false
  1237. },
  1238. "clientSide": false,
  1239. "salt": "47a872c084894b8e9e5127869cefbab6",
  1240. "trackEvents": false,
  1241. "trackEventsFallthrough": false,
  1242. "debugEventsUntilDate": null,
  1243. "version": 2,
  1244. "deleted": false
  1245. },
  1246. "fflag_feat_all_fit_730_review_time_column": {
  1247. "key": "fflag_feat_all_fit_730_review_time_column",
  1248. "on": false,
  1249. "prerequisites": [],
  1250. "targets": [],
  1251. "contextTargets": [],
  1252. "rules": [],
  1253. "fallthrough": {
  1254. "variation": 0
  1255. },
  1256. "offVariation": 1,
  1257. "variations": [
  1258. true,
  1259. false
  1260. ],
  1261. "clientSideAvailability": {
  1262. "usingMobileKey": false,
  1263. "usingEnvironmentId": false
  1264. },
  1265. "clientSide": false,
  1266. "salt": "50ddaa088ed84a9cba1aca9704af8b2c",
  1267. "trackEvents": false,
  1268. "trackEventsFallthrough": false,
  1269. "debugEventsUntilDate": null,
  1270. "version": 2,
  1271. "deleted": false
  1272. },
  1273. "fflag_feat_all_fit_778_analytics_short": {
  1274. "key": "fflag_feat_all_fit_778_analytics_short",
  1275. "on": false,
  1276. "prerequisites": [],
  1277. "targets": [],
  1278. "contextTargets": [],
  1279. "rules": [],
  1280. "fallthrough": {
  1281. "variation": 0
  1282. },
  1283. "offVariation": 1,
  1284. "variations": [
  1285. true,
  1286. false
  1287. ],
  1288. "clientSideAvailability": {
  1289. "usingMobileKey": false,
  1290. "usingEnvironmentId": false
  1291. },
  1292. "clientSide": false,
  1293. "salt": "95302a9d85634c38aa2ec6df86dd438d",
  1294. "trackEvents": false,
  1295. "trackEventsFallthrough": false,
  1296. "debugEventsUntilDate": null,
  1297. "version": 2,
  1298. "deleted": false
  1299. },
  1300. "fflag_feat_all_fit_866_analytics_overview_short": {
  1301. "key": "fflag_feat_all_fit_866_analytics_overview_short",
  1302. "on": false,
  1303. "prerequisites": [],
  1304. "targets": [],
  1305. "contextTargets": [],
  1306. "rules": [],
  1307. "fallthrough": {
  1308. "variation": 0
  1309. },
  1310. "offVariation": 1,
  1311. "variations": [
  1312. true,
  1313. false
  1314. ],
  1315. "clientSideAvailability": {
  1316. "usingMobileKey": false,
  1317. "usingEnvironmentId": false
  1318. },
  1319. "clientSide": false,
  1320. "salt": "c82dcf28900144ec980adbacd0ca5589",
  1321. "trackEvents": false,
  1322. "trackEventsFallthrough": false,
  1323. "debugEventsUntilDate": null,
  1324. "version": 2,
  1325. "deleted": false
  1326. },
  1327. "fflag_feat_all_leap_1081_reviewer_flow_updates": {
  1328. "key": "fflag_feat_all_leap_1081_reviewer_flow_updates",
  1329. "on": true,
  1330. "prerequisites": [],
  1331. "targets": [],
  1332. "contextTargets": [],
  1333. "rules": [],
  1334. "fallthrough": {
  1335. "variation": 0
  1336. },
  1337. "offVariation": 1,
  1338. "variations": [
  1339. true,
  1340. false
  1341. ],
  1342. "clientSideAvailability": {
  1343. "usingMobileKey": false,
  1344. "usingEnvironmentId": false
  1345. },
  1346. "clientSide": false,
  1347. "salt": "e2b43ff7cff547c1b68bf2539a0782a1",
  1348. "trackEvents": false,
  1349. "trackEventsFallthrough": false,
  1350. "debugEventsUntilDate": null,
  1351. "version": 8,
  1352. "deleted": false
  1353. },
  1354. "fflag_feat_all_leap_1181_bulk_annotation_short": {
  1355. "key": "fflag_feat_all_leap_1181_bulk_annotation_short",
  1356. "on": true,
  1357. "prerequisites": [],
  1358. "targets": [],
  1359. "contextTargets": [],
  1360. "rules": [],
  1361. "fallthrough": {
  1362. "variation": 0
  1363. },
  1364. "offVariation": 1,
  1365. "variations": [
  1366. true,
  1367. false
  1368. ],
  1369. "clientSideAvailability": {
  1370. "usingMobileKey": false,
  1371. "usingEnvironmentId": false
  1372. },
  1373. "clientSide": false,
  1374. "salt": "978a68420b714121be3a153a4c472abe",
  1375. "trackEvents": false,
  1376. "trackEventsFallthrough": false,
  1377. "debugEventsUntilDate": null,
  1378. "version": 6,
  1379. "deleted": false
  1380. },
  1381. "fflag_feat_all_leap_1429_flexible_reject_mode_250924_short": {
  1382. "key": "fflag_feat_all_leap_1429_flexible_reject_mode_250924_short",
  1383. "on": true,
  1384. "prerequisites": [],
  1385. "targets": [],
  1386. "contextTargets": [],
  1387. "rules": [],
  1388. "fallthrough": {
  1389. "variation": 0
  1390. },
  1391. "offVariation": 1,
  1392. "variations": [
  1393. true,
  1394. false
  1395. ],
  1396. "clientSideAvailability": {
  1397. "usingMobileKey": false,
  1398. "usingEnvironmentId": false
  1399. },
  1400. "clientSide": false,
  1401. "salt": "dc85fa6d78d84d09a54702d35d2184c1",
  1402. "trackEvents": false,
  1403. "trackEventsFallthrough": false,
  1404. "debugEventsUntilDate": null,
  1405. "version": 4,
  1406. "deleted": false
  1407. },
  1408. "fflag_feat_all_leap_1534_custom_task_lock_timeout_short": {
  1409. "key": "fflag_feat_all_leap_1534_custom_task_lock_timeout_short",
  1410. "on": false,
  1411. "prerequisites": [],
  1412. "targets": [],
  1413. "contextTargets": [],
  1414. "rules": [],
  1415. "fallthrough": {
  1416. "variation": 0
  1417. },
  1418. "offVariation": 1,
  1419. "variations": [
  1420. true,
  1421. false
  1422. ],
  1423. "clientSideAvailability": {
  1424. "usingMobileKey": false,
  1425. "usingEnvironmentId": false
  1426. },
  1427. "clientSide": false,
  1428. "salt": "736e713d05a544a78e8ad1c9dbcc8376",
  1429. "trackEvents": false,
  1430. "trackEventsFallthrough": false,
  1431. "debugEventsUntilDate": null,
  1432. "version": 3,
  1433. "deleted": false
  1434. },
  1435. "fflag_feat_all_leap_1682_plugins_v0": {
  1436. "key": "fflag_feat_all_leap_1682_plugins_v0",
  1437. "on": true,
  1438. "prerequisites": [],
  1439. "targets": [],
  1440. "contextTargets": [],
  1441. "rules": [],
  1442. "fallthrough": {
  1443. "variation": 0
  1444. },
  1445. "offVariation": 1,
  1446. "variations": [
  1447. true,
  1448. false
  1449. ],
  1450. "clientSideAvailability": {
  1451. "usingMobileKey": false,
  1452. "usingEnvironmentId": false
  1453. },
  1454. "clientSide": false,
  1455. "salt": "92d6c7305394440696aa8abf0e5d2143",
  1456. "trackEvents": false,
  1457. "trackEventsFallthrough": false,
  1458. "debugEventsUntilDate": null,
  1459. "version": 3,
  1460. "deleted": false
  1461. },
  1462. "fflag_feat_all_leap_1732_pausing_an_annotator_short": {
  1463. "key": "fflag_feat_all_leap_1732_pausing_an_annotator_short",
  1464. "on": true,
  1465. "prerequisites": [],
  1466. "targets": [],
  1467. "contextTargets": [],
  1468. "rules": [],
  1469. "fallthrough": {
  1470. "variation": 0
  1471. },
  1472. "offVariation": 1,
  1473. "variations": [
  1474. true,
  1475. false
  1476. ],
  1477. "clientSideAvailability": {
  1478. "usingMobileKey": false,
  1479. "usingEnvironmentId": false
  1480. },
  1481. "clientSide": false,
  1482. "salt": "bf2998352dcb4350846a1621b3c44626",
  1483. "trackEvents": false,
  1484. "trackEventsFallthrough": false,
  1485. "debugEventsUntilDate": null,
  1486. "version": 3,
  1487. "deleted": false
  1488. },
  1489. "fflag_feat_all_leap_1821_annotation_limit_short": {
  1490. "key": "fflag_feat_all_leap_1821_annotation_limit_short",
  1491. "on": true,
  1492. "prerequisites": [],
  1493. "targets": [],
  1494. "contextTargets": [],
  1495. "rules": [],
  1496. "fallthrough": {
  1497. "variation": 0
  1498. },
  1499. "offVariation": 1,
  1500. "variations": [
  1501. true,
  1502. false
  1503. ],
  1504. "clientSideAvailability": {
  1505. "usingMobileKey": false,
  1506. "usingEnvironmentId": false
  1507. },
  1508. "clientSide": false,
  1509. "salt": "55ab9d58aa70410d8bf4a8b3dd1712bb",
  1510. "trackEvents": false,
  1511. "trackEventsFallthrough": false,
  1512. "debugEventsUntilDate": null,
  1513. "version": 3,
  1514. "deleted": false
  1515. },
  1516. "fflag_feat_all_leap_2042_average_agreement_score_popover": {
  1517. "key": "fflag_feat_all_leap_2042_average_agreement_score_popover",
  1518. "on": true,
  1519. "prerequisites": [],
  1520. "targets": [],
  1521. "contextTargets": [],
  1522. "rules": [],
  1523. "fallthrough": {
  1524. "variation": 0
  1525. },
  1526. "offVariation": 1,
  1527. "variations": [
  1528. true,
  1529. false
  1530. ],
  1531. "clientSideAvailability": {
  1532. "usingMobileKey": false,
  1533. "usingEnvironmentId": false
  1534. },
  1535. "clientSide": false,
  1536. "salt": "68a21fc8190441fb85b49b49a32583b0",
  1537. "trackEvents": false,
  1538. "trackEventsFallthrough": false,
  1539. "debugEventsUntilDate": null,
  1540. "version": 3,
  1541. "deleted": false
  1542. },
  1543. "fflag_feat_all_leap_883_custom_script_270524_short": {
  1544. "key": "fflag_feat_all_leap_883_custom_script_270524_short",
  1545. "on": true,
  1546. "prerequisites": [],
  1547. "targets": [],
  1548. "contextTargets": [],
  1549. "rules": [],
  1550. "fallthrough": {
  1551. "variation": 0
  1552. },
  1553. "offVariation": 1,
  1554. "variations": [
  1555. true,
  1556. false
  1557. ],
  1558. "clientSideAvailability": {
  1559. "usingMobileKey": false,
  1560. "usingEnvironmentId": false
  1561. },
  1562. "clientSide": false,
  1563. "salt": "6c077db957b14df68a3790866fec95d2",
  1564. "trackEvents": false,
  1565. "trackEventsFallthrough": false,
  1566. "debugEventsUntilDate": null,
  1567. "version": 7,
  1568. "deleted": false
  1569. },
  1570. "fflag_feat_all_lops_315_temp_datasets_limitations_short": {
  1571. "key": "fflag_feat_all_lops_315_temp_datasets_limitations_short",
  1572. "on": false,
  1573. "prerequisites": [],
  1574. "targets": [],
  1575. "contextTargets": [],
  1576. "rules": [],
  1577. "fallthrough": {
  1578. "variation": 0
  1579. },
  1580. "offVariation": 1,
  1581. "variations": [
  1582. true,
  1583. false
  1584. ],
  1585. "clientSideAvailability": {
  1586. "usingMobileKey": false,
  1587. "usingEnvironmentId": false
  1588. },
  1589. "clientSide": false,
  1590. "salt": "2fe0488c9cf342f3a4d2b21ca8a39f77",
  1591. "trackEvents": false,
  1592. "trackEventsFallthrough": false,
  1593. "debugEventsUntilDate": null,
  1594. "version": 3,
  1595. "deleted": false
  1596. },
  1597. "fflag_feat_all_lops_e_3_datasets_short": {
  1598. "key": "fflag_feat_all_lops_e_3_datasets_short",
  1599. "on": true,
  1600. "prerequisites": [],
  1601. "targets": [
  1602. {
  1603. "contextKind": "user",
  1604. "variation": 0,
  1605. "values": [
  1606. "yousif@heartex.com"
  1607. ]
  1608. }
  1609. ],
  1610. "contextTargets": [
  1611. {
  1612. "contextKind": "user",
  1613. "variation": 0,
  1614. "values": []
  1615. }
  1616. ],
  1617. "rules": [],
  1618. "fallthrough": {
  1619. "variation": 1
  1620. },
  1621. "offVariation": 1,
  1622. "variations": [
  1623. true,
  1624. false
  1625. ],
  1626. "clientSideAvailability": {
  1627. "usingMobileKey": false,
  1628. "usingEnvironmentId": false
  1629. },
  1630. "clientSide": false,
  1631. "salt": "9048a4ea89c0437b90600d9bdaf62eaa",
  1632. "trackEvents": false,
  1633. "trackEventsFallthrough": false,
  1634. "debugEventsUntilDate": null,
  1635. "version": 6,
  1636. "deleted": false
  1637. },
  1638. "fflag_feat_all_lsdv_e_294_llm_annotations_180723_long": {
  1639. "key": "fflag_feat_all_lsdv_e_294_llm_annotations_180723_long",
  1640. "on": true,
  1641. "prerequisites": [],
  1642. "targets": [],
  1643. "contextTargets": [],
  1644. "rules": [],
  1645. "fallthrough": {
  1646. "variation": 0
  1647. },
  1648. "offVariation": 1,
  1649. "variations": [
  1650. true,
  1651. false
  1652. ],
  1653. "clientSideAvailability": {
  1654. "usingMobileKey": false,
  1655. "usingEnvironmentId": false
  1656. },
  1657. "clientSide": false,
  1658. "salt": "640d40057d9f408587c8996ac2d3710c",
  1659. "trackEvents": false,
  1660. "trackEventsFallthrough": false,
  1661. "debugEventsUntilDate": null,
  1662. "version": 8,
  1663. "deleted": false
  1664. },
  1665. "fflag_feat_all_lsdv_e_295_project_level_roles_via_saml_scim_ldap_short": {
  1666. "key": "fflag_feat_all_lsdv_e_295_project_level_roles_via_saml_scim_ldap_short",
  1667. "on": false,
  1668. "prerequisites": [],
  1669. "targets": [],
  1670. "contextTargets": [],
  1671. "rules": [],
  1672. "fallthrough": {
  1673. "variation": 0
  1674. },
  1675. "offVariation": 1,
  1676. "variations": [
  1677. true,
  1678. false
  1679. ],
  1680. "clientSideAvailability": {
  1681. "usingMobileKey": false,
  1682. "usingEnvironmentId": false
  1683. },
  1684. "clientSide": false,
  1685. "salt": "ca5b9081fa654bc08621311cc409a341",
  1686. "trackEvents": false,
  1687. "trackEventsFallthrough": false,
  1688. "debugEventsUntilDate": null,
  1689. "version": 2,
  1690. "deleted": false
  1691. },
  1692. "fflag_feat_all_optic_1354_sum_annotation_region_count_short": {
  1693. "key": "fflag_feat_all_optic_1354_sum_annotation_region_count_short",
  1694. "on": false,
  1695. "prerequisites": [],
  1696. "targets": [],
  1697. "contextTargets": [],
  1698. "rules": [],
  1699. "fallthrough": {
  1700. "variation": 0
  1701. },
  1702. "offVariation": 1,
  1703. "variations": [
  1704. true,
  1705. false
  1706. ],
  1707. "clientSideAvailability": {
  1708. "usingMobileKey": false,
  1709. "usingEnvironmentId": false
  1710. },
  1711. "clientSide": false,
  1712. "salt": "bbb5c996193946d9935d9438e0c5a33a",
  1713. "trackEvents": false,
  1714. "trackEventsFallthrough": false,
  1715. "debugEventsUntilDate": null,
  1716. "version": 2,
  1717. "deleted": false
  1718. },
  1719. "fflag_feat_all_optic_1811_automax_project_setup_streaming": {
  1720. "key": "fflag_feat_all_optic_1811_automax_project_setup_streaming",
  1721. "on": true,
  1722. "prerequisites": [],
  1723. "targets": [],
  1724. "contextTargets": [],
  1725. "rules": [],
  1726. "fallthrough": {
  1727. "variation": 0
  1728. },
  1729. "offVariation": 1,
  1730. "variations": [
  1731. true,
  1732. false
  1733. ],
  1734. "clientSideAvailability": {
  1735. "usingMobileKey": false,
  1736. "usingEnvironmentId": false
  1737. },
  1738. "clientSide": false,
  1739. "salt": "4bbabd8130cd43fcb0b30f2eb3ef7f56",
  1740. "trackEvents": false,
  1741. "trackEventsFallthrough": false,
  1742. "debugEventsUntilDate": null,
  1743. "version": 3,
  1744. "deleted": false
  1745. },
  1746. "fflag_feat_all_utc_179_custom_function_logs": {
  1747. "key": "fflag_feat_all_utc_179_custom_function_logs",
  1748. "on": true,
  1749. "prerequisites": [],
  1750. "targets": [],
  1751. "contextTargets": [],
  1752. "rules": [],
  1753. "fallthrough": {
  1754. "variation": 0
  1755. },
  1756. "offVariation": 1,
  1757. "variations": [
  1758. true,
  1759. false
  1760. ],
  1761. "clientSideAvailability": {
  1762. "usingMobileKey": false,
  1763. "usingEnvironmentId": false
  1764. },
  1765. "clientSide": false,
  1766. "salt": "46211fe6c7124fd4b8e731efc8bb8572",
  1767. "trackEvents": false,
  1768. "trackEventsFallthrough": false,
  1769. "debugEventsUntilDate": null,
  1770. "version": 3,
  1771. "deleted": false
  1772. },
  1773. "fflag_feat_all_utc_222_prompts_api_keys_enterprise_only": {
  1774. "key": "fflag_feat_all_utc_222_prompts_api_keys_enterprise_only",
  1775. "on": false,
  1776. "prerequisites": [],
  1777. "targets": [],
  1778. "contextTargets": [],
  1779. "rules": [],
  1780. "fallthrough": {
  1781. "variation": 0
  1782. },
  1783. "offVariation": 1,
  1784. "variations": [
  1785. true,
  1786. false
  1787. ],
  1788. "clientSideAvailability": {
  1789. "usingMobileKey": false,
  1790. "usingEnvironmentId": false
  1791. },
  1792. "clientSide": false,
  1793. "salt": "c99901253ca14e4a955c3cefde8af61c",
  1794. "trackEvents": false,
  1795. "trackEventsFallthrough": false,
  1796. "debugEventsUntilDate": null,
  1797. "version": 2,
  1798. "deleted": false
  1799. },
  1800. "fflag_feat_back_dev_3756_queue_enrollment_min_short": {
  1801. "key": "fflag_feat_back_dev_3756_queue_enrollment_min_short",
  1802. "on": false,
  1803. "prerequisites": [],
  1804. "targets": [],
  1805. "contextTargets": [],
  1806. "rules": [],
  1807. "fallthrough": {
  1808. "variation": 0
  1809. },
  1810. "offVariation": 1,
  1811. "variations": [
  1812. true,
  1813. false
  1814. ],
  1815. "clientSideAvailability": {
  1816. "usingMobileKey": true,
  1817. "usingEnvironmentId": false
  1818. },
  1819. "clientSide": false,
  1820. "salt": "081f810caa714e5cab227bb557c798a2",
  1821. "trackEvents": false,
  1822. "trackEventsFallthrough": false,
  1823. "debugEventsUntilDate": null,
  1824. "version": 2,
  1825. "deleted": false
  1826. },
  1827. "fflag_feat_back_lsdv_3958_server_side_encryption_for_target_storage_short": {
  1828. "key": "fflag_feat_back_lsdv_3958_server_side_encryption_for_target_storage_short",
  1829. "on": false,
  1830. "prerequisites": [],
  1831. "targets": [],
  1832. "contextTargets": [],
  1833. "rules": [],
  1834. "fallthrough": {
  1835. "variation": 0
  1836. },
  1837. "offVariation": 1,
  1838. "variations": [
  1839. true,
  1840. false
  1841. ],
  1842. "clientSideAvailability": {
  1843. "usingMobileKey": false,
  1844. "usingEnvironmentId": false
  1845. },
  1846. "clientSide": false,
  1847. "salt": "850718b1924948e6a8fac22840a18993",
  1848. "trackEvents": false,
  1849. "trackEventsFallthrough": false,
  1850. "debugEventsUntilDate": null,
  1851. "version": 5,
  1852. "deleted": false
  1853. },
  1854. "fflag_feat_back_lsdv_4932_enable_memory_profiler": {
  1855. "key": "fflag_feat_back_lsdv_4932_enable_memory_profiler",
  1856. "on": false,
  1857. "prerequisites": [],
  1858. "targets": [],
  1859. "contextTargets": [],
  1860. "rules": [],
  1861. "fallthrough": {
  1862. "variation": 1
  1863. },
  1864. "offVariation": 1,
  1865. "variations": [
  1866. true,
  1867. false
  1868. ],
  1869. "clientSideAvailability": {
  1870. "usingMobileKey": false,
  1871. "usingEnvironmentId": false
  1872. },
  1873. "clientSide": false,
  1874. "salt": "5b7df006ae16414982f3395daadc9245",
  1875. "trackEvents": false,
  1876. "trackEventsFallthrough": false,
  1877. "debugEventsUntilDate": null,
  1878. "version": 4,
  1879. "deleted": false
  1880. },
  1881. "fflag_feat_back_lsdv_5307_import_reviews_drafts_29062023_short": {
  1882. "key": "fflag_feat_back_lsdv_5307_import_reviews_drafts_29062023_short",
  1883. "on": false,
  1884. "prerequisites": [],
  1885. "targets": [],
  1886. "contextTargets": [],
  1887. "rules": [],
  1888. "fallthrough": {
  1889. "variation": 0
  1890. },
  1891. "offVariation": 1,
  1892. "variations": [
  1893. true,
  1894. false
  1895. ],
  1896. "clientSideAvailability": {
  1897. "usingMobileKey": false,
  1898. "usingEnvironmentId": false
  1899. },
  1900. "clientSide": false,
  1901. "salt": "3f7fe060bc424b98829c06ca3e3bd62c",
  1902. "trackEvents": false,
  1903. "trackEventsFallthrough": false,
  1904. "debugEventsUntilDate": null,
  1905. "version": 3,
  1906. "deleted": false
  1907. },
  1908. "fflag_feat_back_optic_1579_force_memory_profiler": {
  1909. "key": "fflag_feat_back_optic_1579_force_memory_profiler",
  1910. "on": false,
  1911. "prerequisites": [],
  1912. "targets": [],
  1913. "contextTargets": [],
  1914. "rules": [],
  1915. "fallthrough": {
  1916. "variation": 1
  1917. },
  1918. "offVariation": 1,
  1919. "variations": [
  1920. true,
  1921. false
  1922. ],
  1923. "clientSideAvailability": {
  1924. "usingMobileKey": false,
  1925. "usingEnvironmentId": false
  1926. },
  1927. "clientSide": false,
  1928. "salt": "ca386034d55e4907a022740cbe2250e8",
  1929. "trackEvents": false,
  1930. "trackEventsFallthrough": false,
  1931. "debugEventsUntilDate": null,
  1932. "version": 2,
  1933. "deleted": false
  1934. },
  1935. "fflag_feat_back_optic_428_scim_multi_mapping": {
  1936. "key": "fflag_feat_back_optic_428_scim_multi_mapping",
  1937. "on": false,
  1938. "prerequisites": [],
  1939. "targets": [],
  1940. "contextTargets": [],
  1941. "rules": [],
  1942. "fallthrough": {
  1943. "variation": 0
  1944. },
  1945. "offVariation": 1,
  1946. "variations": [
  1947. true,
  1948. false
  1949. ],
  1950. "clientSideAvailability": {
  1951. "usingMobileKey": false,
  1952. "usingEnvironmentId": false
  1953. },
  1954. "clientSide": false,
  1955. "salt": "361255f1f8a445b285c66737152783cb",
  1956. "trackEvents": false,
  1957. "trackEventsFallthrough": false,
  1958. "debugEventsUntilDate": null,
  1959. "version": 8,
  1960. "deleted": false
  1961. },
  1962. "fflag_feat_back_org_excluded_from_custom_scripts_validation_short": {
  1963. "key": "fflag_feat_back_org_excluded_from_custom_scripts_validation_short",
  1964. "on": false,
  1965. "prerequisites": [],
  1966. "targets": [],
  1967. "contextTargets": [],
  1968. "rules": [],
  1969. "fallthrough": {
  1970. "variation": 1
  1971. },
  1972. "offVariation": 1,
  1973. "variations": [
  1974. true,
  1975. false
  1976. ],
  1977. "clientSideAvailability": {
  1978. "usingMobileKey": false,
  1979. "usingEnvironmentId": false
  1980. },
  1981. "clientSide": false,
  1982. "salt": "4f0a52167be74bf2b7943a17baede004",
  1983. "trackEvents": false,
  1984. "trackEventsFallthrough": false,
  1985. "debugEventsUntilDate": null,
  1986. "version": 2,
  1987. "deleted": false
  1988. },
  1989. "fflag_feat_backend_optic_427_org_member_role_throttling_short": {
  1990. "key": "fflag_feat_backend_optic_427_org_member_role_throttling_short",
  1991. "on": false,
  1992. "prerequisites": [],
  1993. "targets": [],
  1994. "contextTargets": [],
  1995. "rules": [],
  1996. "fallthrough": {
  1997. "variation": 0
  1998. },
  1999. "offVariation": 1,
  2000. "variations": [
  2001. true,
  2002. false
  2003. ],
  2004. "clientSideAvailability": {
  2005. "usingMobileKey": false,
  2006. "usingEnvironmentId": false
  2007. },
  2008. "clientSide": false,
  2009. "salt": "47de2782717d44c0a1d770a1e64e3760",
  2010. "trackEvents": false,
  2011. "trackEventsFallthrough": false,
  2012. "debugEventsUntilDate": null,
  2013. "version": 2,
  2014. "deleted": false
  2015. },
  2016. "fflag_feat_bros_12_support_reports": {
  2017. "key": "fflag_feat_bros_12_support_reports",
  2018. "on": false,
  2019. "prerequisites": [],
  2020. "targets": [],
  2021. "contextTargets": [],
  2022. "rules": [],
  2023. "fallthrough": {
  2024. "variation": 0
  2025. },
  2026. "offVariation": 1,
  2027. "variations": [
  2028. true,
  2029. false
  2030. ],
  2031. "clientSideAvailability": {
  2032. "usingMobileKey": false,
  2033. "usingEnvironmentId": false
  2034. },
  2035. "clientSide": false,
  2036. "salt": "6f7074ba239341a6b20502b7d3e7255b",
  2037. "trackEvents": false,
  2038. "trackEventsFallthrough": false,
  2039. "debugEventsUntilDate": null,
  2040. "version": 2,
  2041. "deleted": false
  2042. },
  2043. "fflag_feat_bros_193_new_cloud_storage_providers_short": {
  2044. "key": "fflag_feat_bros_193_new_cloud_storage_providers_short",
  2045. "on": false,
  2046. "prerequisites": [],
  2047. "targets": [],
  2048. "contextTargets": [],
  2049. "rules": [],
  2050. "fallthrough": {
  2051. "variation": 0
  2052. },
  2053. "offVariation": 1,
  2054. "variations": [
  2055. true,
  2056. false
  2057. ],
  2058. "clientSideAvailability": {
  2059. "usingMobileKey": false,
  2060. "usingEnvironmentId": false
  2061. },
  2062. "clientSide": false,
  2063. "salt": "f20c6ed11aa948e78a6f5f3e75f055b1",
  2064. "trackEvents": false,
  2065. "trackEventsFallthrough": false,
  2066. "debugEventsUntilDate": null,
  2067. "version": 3,
  2068. "deleted": false
  2069. },
  2070. "fflag_feat_bros_353_databricks_files": {
  2071. "key": "fflag_feat_bros_353_databricks_files",
  2072. "on": true,
  2073. "prerequisites": [],
  2074. "targets": [],
  2075. "contextTargets": [],
  2076. "rules": [],
  2077. "fallthrough": {
  2078. "variation": 0
  2079. },
  2080. "offVariation": 1,
  2081. "variations": [
  2082. true,
  2083. false
  2084. ],
  2085. "clientSideAvailability": {
  2086. "usingMobileKey": false,
  2087. "usingEnvironmentId": false
  2088. },
  2089. "clientSide": false,
  2090. "salt": "8803109d73674c9dbfd3f4e0ed549908",
  2091. "trackEvents": false,
  2092. "trackEventsFallthrough": false,
  2093. "debugEventsUntilDate": null,
  2094. "version": 3,
  2095. "deleted": false
  2096. },
  2097. "fflag_feat_bros_573_project_soft_deletion": {
  2098. "key": "fflag_feat_bros_573_project_soft_deletion",
  2099. "on": true,
  2100. "prerequisites": [],
  2101. "targets": [],
  2102. "contextTargets": [],
  2103. "rules": [],
  2104. "fallthrough": {
  2105. "variation": 0
  2106. },
  2107. "offVariation": 1,
  2108. "variations": [
  2109. true,
  2110. false
  2111. ],
  2112. "clientSideAvailability": {
  2113. "usingMobileKey": false,
  2114. "usingEnvironmentId": false
  2115. },
  2116. "clientSide": false,
  2117. "salt": "acbd7ebcde3c4a62949d5017a562b732",
  2118. "trackEvents": false,
  2119. "trackEventsFallthrough": false,
  2120. "debugEventsUntilDate": null,
  2121. "version": 3,
  2122. "deleted": false
  2123. },
  2124. "fflag_feat_dev_2755_regions_list_grouped_by_labels_with_ordered_collapse_short": {
  2125. "key": "fflag_feat_dev_2755_regions_list_grouped_by_labels_with_ordered_collapse_short",
  2126. "on": false,
  2127. "prerequisites": [],
  2128. "targets": [],
  2129. "contextTargets": [],
  2130. "rules": [],
  2131. "fallthrough": {
  2132. "variation": 0
  2133. },
  2134. "offVariation": 1,
  2135. "variations": [
  2136. true,
  2137. false
  2138. ],
  2139. "clientSideAvailability": {
  2140. "usingMobileKey": false,
  2141. "usingEnvironmentId": false
  2142. },
  2143. "clientSide": false,
  2144. "salt": "78df3c3594d1489c876dc8bb1bc5608e",
  2145. "trackEvents": false,
  2146. "trackEventsFallthrough": false,
  2147. "debugEventsUntilDate": null,
  2148. "version": 5,
  2149. "deleted": false
  2150. },
  2151. "fflag_feat_dia_1661_improve_prompts_discovery_and_conversion": {
  2152. "key": "fflag_feat_dia_1661_improve_prompts_discovery_and_conversion",
  2153. "on": false,
  2154. "prerequisites": [],
  2155. "targets": [],
  2156. "contextTargets": [],
  2157. "rules": [],
  2158. "fallthrough": {
  2159. "variation": 0
  2160. },
  2161. "offVariation": 1,
  2162. "variations": [
  2163. true,
  2164. false
  2165. ],
  2166. "clientSideAvailability": {
  2167. "usingMobileKey": false,
  2168. "usingEnvironmentId": false
  2169. },
  2170. "clientSide": false,
  2171. "salt": "dd91c724ccc84009874e458acc785d1f",
  2172. "trackEvents": false,
  2173. "trackEventsFallthrough": false,
  2174. "debugEventsUntilDate": null,
  2175. "version": 3,
  2176. "deleted": false
  2177. },
  2178. "fflag_feat_dia_1697_product_tour_short": {
  2179. "key": "fflag_feat_dia_1697_product_tour_short",
  2180. "on": false,
  2181. "prerequisites": [],
  2182. "targets": [],
  2183. "contextTargets": [],
  2184. "rules": [],
  2185. "fallthrough": {
  2186. "variation": 0
  2187. },
  2188. "offVariation": 1,
  2189. "variations": [
  2190. true,
  2191. false
  2192. ],
  2193. "clientSideAvailability": {
  2194. "usingMobileKey": false,
  2195. "usingEnvironmentId": false
  2196. },
  2197. "clientSide": false,
  2198. "salt": "c189d5e451df4baead35fbb4c0664652",
  2199. "trackEvents": false,
  2200. "trackEventsFallthrough": false,
  2201. "debugEventsUntilDate": null,
  2202. "version": 3,
  2203. "deleted": false
  2204. },
  2205. "fflag_feat_dia_1920_project_creation_sample_data_short": {
  2206. "key": "fflag_feat_dia_1920_project_creation_sample_data_short",
  2207. "on": false,
  2208. "prerequisites": [],
  2209. "targets": [],
  2210. "contextTargets": [],
  2211. "rules": [],
  2212. "fallthrough": {
  2213. "variation": 0
  2214. },
  2215. "offVariation": 1,
  2216. "variations": [
  2217. true,
  2218. false
  2219. ],
  2220. "clientSideAvailability": {
  2221. "usingMobileKey": false,
  2222. "usingEnvironmentId": false
  2223. },
  2224. "clientSide": false,
  2225. "salt": "9f81fdc5e214419f8715744315e2b050",
  2226. "trackEvents": false,
  2227. "trackEventsFallthrough": false,
  2228. "debugEventsUntilDate": null,
  2229. "version": 2,
  2230. "deleted": false
  2231. },
  2232. "fflag_feat_dia_1925_view_sample_raw_json_short": {
  2233. "key": "fflag_feat_dia_1925_view_sample_raw_json_short",
  2234. "on": false,
  2235. "prerequisites": [],
  2236. "targets": [],
  2237. "contextTargets": [],
  2238. "rules": [],
  2239. "fallthrough": {
  2240. "variation": 0
  2241. },
  2242. "offVariation": 1,
  2243. "variations": [
  2244. true,
  2245. false
  2246. ],
  2247. "clientSideAvailability": {
  2248. "usingMobileKey": false,
  2249. "usingEnvironmentId": false
  2250. },
  2251. "clientSide": false,
  2252. "salt": "ada8018a7d124ed3976aba1e0ae85c81",
  2253. "trackEvents": false,
  2254. "trackEventsFallthrough": false,
  2255. "debugEventsUntilDate": null,
  2256. "version": 2,
  2257. "deleted": false
  2258. },
  2259. "fflag_feat_fit_449_datamanager_filter_members_short": {
  2260. "key": "fflag_feat_fit_449_datamanager_filter_members_short",
  2261. "on": false,
  2262. "prerequisites": [],
  2263. "targets": [],
  2264. "contextTargets": [],
  2265. "rules": [],
  2266. "fallthrough": {
  2267. "variation": 0
  2268. },
  2269. "offVariation": 1,
  2270. "variations": [
  2271. true,
  2272. false
  2273. ],
  2274. "clientSideAvailability": {
  2275. "usingMobileKey": false,
  2276. "usingEnvironmentId": false
  2277. },
  2278. "clientSide": false,
  2279. "salt": "535a9963d6e342eaa088a0405c41d4e9",
  2280. "trackEvents": false,
  2281. "trackEventsFallthrough": false,
  2282. "debugEventsUntilDate": null,
  2283. "version": 4,
  2284. "deleted": false
  2285. },
  2286. "fflag_feat_fit_523_emitting_task_events_for_annotation_and_review": {
  2287. "key": "fflag_feat_fit_523_emitting_task_events_for_annotation_and_review",
  2288. "on": true,
  2289. "prerequisites": [],
  2290. "targets": [],
  2291. "contextTargets": [],
  2292. "rules": [],
  2293. "fallthrough": {
  2294. "variation": 0
  2295. },
  2296. "offVariation": 1,
  2297. "variations": [
  2298. true,
  2299. false
  2300. ],
  2301. "clientSideAvailability": {
  2302. "usingMobileKey": false,
  2303. "usingEnvironmentId": false
  2304. },
  2305. "clientSide": false,
  2306. "salt": "05ae86bc74ca4d42a43a6e0ff0f18d2f",
  2307. "trackEvents": false,
  2308. "trackEventsFallthrough": false,
  2309. "debugEventsUntilDate": null,
  2310. "version": 3,
  2311. "deleted": false
  2312. },
  2313. "fflag_feat_fit_528_icon_menu_short": {
  2314. "key": "fflag_feat_fit_528_icon_menu_short",
  2315. "on": false,
  2316. "prerequisites": [],
  2317. "targets": [],
  2318. "contextTargets": [],
  2319. "rules": [],
  2320. "fallthrough": {
  2321. "variation": 0
  2322. },
  2323. "offVariation": 1,
  2324. "variations": [
  2325. true,
  2326. false
  2327. ],
  2328. "clientSideAvailability": {
  2329. "usingMobileKey": false,
  2330. "usingEnvironmentId": false
  2331. },
  2332. "clientSide": false,
  2333. "salt": "2ca9a6f250e8410dbf942fdfc052d736",
  2334. "trackEvents": false,
  2335. "trackEventsFallthrough": false,
  2336. "debugEventsUntilDate": null,
  2337. "version": 2,
  2338. "deleted": false
  2339. },
  2340. "fflag_feat_fit_52_label_studio_enterprise_embed": {
  2341. "key": "fflag_feat_fit_52_label_studio_enterprise_embed",
  2342. "on": false,
  2343. "prerequisites": [],
  2344. "targets": [],
  2345. "contextTargets": [],
  2346. "rules": [],
  2347. "fallthrough": {
  2348. "variation": 0
  2349. },
  2350. "offVariation": 1,
  2351. "variations": [
  2352. true,
  2353. false
  2354. ],
  2355. "clientSideAvailability": {
  2356. "usingMobileKey": false,
  2357. "usingEnvironmentId": false
  2358. },
  2359. "clientSide": false,
  2360. "salt": "040157bb203947de887798a56be2b3b4",
  2361. "trackEvents": false,
  2362. "trackEventsFallthrough": false,
  2363. "debugEventsUntilDate": null,
  2364. "version": 3,
  2365. "deleted": false
  2366. },
  2367. "fflag_feat_fit_568_finite_state_management": {
  2368. "key": "fflag_feat_fit_568_finite_state_management",
  2369. "on": false,
  2370. "prerequisites": [],
  2371. "targets": [],
  2372. "contextTargets": [],
  2373. "rules": [],
  2374. "fallthrough": {
  2375. "variation": 0
  2376. },
  2377. "offVariation": 1,
  2378. "variations": [
  2379. true,
  2380. false
  2381. ],
  2382. "clientSideAvailability": {
  2383. "usingMobileKey": false,
  2384. "usingEnvironmentId": false
  2385. },
  2386. "clientSide": false,
  2387. "salt": "2ab6712d781c45ef97555e5ae0fec8a2",
  2388. "trackEvents": false,
  2389. "trackEventsFallthrough": false,
  2390. "debugEventsUntilDate": null,
  2391. "version": 2,
  2392. "deleted": false
  2393. },
  2394. "fflag_feat_fit_710_fsm_state_fields": {
  2395. "key": "fflag_feat_fit_710_fsm_state_fields",
  2396. "on": false,
  2397. "prerequisites": [],
  2398. "targets": [],
  2399. "contextTargets": [],
  2400. "rules": [],
  2401. "fallthrough": {
  2402. "variation": 0
  2403. },
  2404. "offVariation": 1,
  2405. "variations": [
  2406. true,
  2407. false
  2408. ],
  2409. "clientSideAvailability": {
  2410. "usingMobileKey": false,
  2411. "usingEnvironmentId": false
  2412. },
  2413. "clientSide": false,
  2414. "salt": "406c3f0910444278b06394ee33773d9d",
  2415. "trackEvents": false,
  2416. "trackEventsFallthrough": false,
  2417. "debugEventsUntilDate": null,
  2418. "version": 2,
  2419. "deleted": false
  2420. },
  2421. "fflag_feat_fit_890_ask_ai_event_stream": {
  2422. "key": "fflag_feat_fit_890_ask_ai_event_stream",
  2423. "on": false,
  2424. "prerequisites": [],
  2425. "targets": [],
  2426. "contextTargets": [],
  2427. "rules": [],
  2428. "fallthrough": {
  2429. "variation": 0
  2430. },
  2431. "offVariation": 1,
  2432. "variations": [
  2433. true,
  2434. false
  2435. ],
  2436. "clientSideAvailability": {
  2437. "usingMobileKey": false,
  2438. "usingEnvironmentId": false
  2439. },
  2440. "clientSide": false,
  2441. "salt": "a71b7adde0c9412bbdd1d76e6214e082",
  2442. "trackEvents": false,
  2443. "trackEventsFallthrough": false,
  2444. "debugEventsUntilDate": null,
  2445. "version": 2,
  2446. "deleted": false
  2447. },
  2448. "fflag_feat_front_bros_194_custom_tags_short": {
  2449. "key": "fflag_feat_front_bros_194_custom_tags_short",
  2450. "on": true,
  2451. "prerequisites": [],
  2452. "targets": [],
  2453. "contextTargets": [],
  2454. "rules": [],
  2455. "fallthrough": {
  2456. "variation": 0
  2457. },
  2458. "offVariation": 1,
  2459. "variations": [
  2460. true,
  2461. false
  2462. ],
  2463. "clientSideAvailability": {
  2464. "usingMobileKey": false,
  2465. "usingEnvironmentId": false
  2466. },
  2467. "clientSide": false,
  2468. "salt": "de13b8aabfdb4e23b4b12b7b6a4bab0b",
  2469. "trackEvents": false,
  2470. "trackEventsFallthrough": false,
  2471. "debugEventsUntilDate": null,
  2472. "version": 3,
  2473. "deleted": false
  2474. },
  2475. "fflag_feat_front_bros_199_enable_select_all_in_ner_phrase_short": {
  2476. "key": "fflag_feat_front_bros_199_enable_select_all_in_ner_phrase_short",
  2477. "on": true,
  2478. "prerequisites": [],
  2479. "targets": [],
  2480. "contextTargets": [],
  2481. "rules": [],
  2482. "fallthrough": {
  2483. "variation": 0
  2484. },
  2485. "offVariation": 1,
  2486. "variations": [
  2487. true,
  2488. false
  2489. ],
  2490. "clientSideAvailability": {
  2491. "usingMobileKey": false,
  2492. "usingEnvironmentId": false
  2493. },
  2494. "clientSide": false,
  2495. "salt": "a2542855bb6e42dab6e1d5aa4574091b",
  2496. "trackEvents": false,
  2497. "trackEventsFallthrough": false,
  2498. "debugEventsUntilDate": null,
  2499. "version": 4,
  2500. "deleted": false
  2501. },
  2502. "fflag_feat_front_bros_327_multiple_labels_regions_short": {
  2503. "key": "fflag_feat_front_bros_327_multiple_labels_regions_short",
  2504. "on": true,
  2505. "prerequisites": [],
  2506. "targets": [],
  2507. "contextTargets": [],
  2508. "rules": [],
  2509. "fallthrough": {
  2510. "variation": 0
  2511. },
  2512. "offVariation": 1,
  2513. "variations": [
  2514. true,
  2515. false
  2516. ],
  2517. "clientSideAvailability": {
  2518. "usingMobileKey": false,
  2519. "usingEnvironmentId": false
  2520. },
  2521. "clientSide": false,
  2522. "salt": "f0c19fe911ba40fab6ba4b633652454d",
  2523. "trackEvents": false,
  2524. "trackEventsFallthrough": false,
  2525. "debugEventsUntilDate": null,
  2526. "version": 3,
  2527. "deleted": false
  2528. },
  2529. "fflag_feat_front_bros_371_new_pdf_tag_short": {
  2530. "key": "fflag_feat_front_bros_371_new_pdf_tag_short",
  2531. "on": false,
  2532. "prerequisites": [],
  2533. "targets": [],
  2534. "contextTargets": [],
  2535. "rules": [],
  2536. "fallthrough": {
  2537. "variation": 0
  2538. },
  2539. "offVariation": 1,
  2540. "variations": [
  2541. true,
  2542. false
  2543. ],
  2544. "clientSideAvailability": {
  2545. "usingMobileKey": false,
  2546. "usingEnvironmentId": false
  2547. },
  2548. "clientSide": false,
  2549. "salt": "5dca97dd6b6741418230f4bd1b12e13b",
  2550. "trackEvents": false,
  2551. "trackEventsFallthrough": false,
  2552. "debugEventsUntilDate": null,
  2553. "version": 2,
  2554. "deleted": false
  2555. },
  2556. "fflag_feat_front_dev-2536_comment_notifications_short": {
  2557. "key": "fflag_feat_front_dev-2536_comment_notifications_short",
  2558. "on": false,
  2559. "prerequisites": [],
  2560. "targets": [],
  2561. "contextTargets": [],
  2562. "rules": [],
  2563. "fallthrough": {
  2564. "variation": 0
  2565. },
  2566. "offVariation": 1,
  2567. "variations": [
  2568. true,
  2569. false
  2570. ],
  2571. "clientSideAvailability": {
  2572. "usingMobileKey": false,
  2573. "usingEnvironmentId": false
  2574. },
  2575. "clientSide": false,
  2576. "salt": "ae80730e3ab04b27b8d601288ca4d306",
  2577. "trackEvents": false,
  2578. "trackEventsFallthrough": false,
  2579. "debugEventsUntilDate": null,
  2580. "version": 5,
  2581. "deleted": false
  2582. },
  2583. "fflag_feat_front_dev_3051_trial_experience_short": {
  2584. "key": "fflag_feat_front_dev_3051_trial_experience_short",
  2585. "on": false,
  2586. "prerequisites": [],
  2587. "targets": [],
  2588. "contextTargets": [],
  2589. "rules": [],
  2590. "fallthrough": {
  2591. "variation": 0
  2592. },
  2593. "offVariation": 1,
  2594. "variations": [
  2595. true,
  2596. false
  2597. ],
  2598. "clientSideAvailability": {
  2599. "usingMobileKey": false,
  2600. "usingEnvironmentId": false
  2601. },
  2602. "clientSide": false,
  2603. "salt": "d47457aa23254d0e8352d7be1b33e2e7",
  2604. "trackEvents": false,
  2605. "trackEventsFallthrough": false,
  2606. "debugEventsUntilDate": null,
  2607. "version": 4,
  2608. "deleted": false
  2609. },
  2610. "fflag_feat_front_dev_3077_repeater_tag_loading_performance_short": {
  2611. "key": "fflag_feat_front_dev_3077_repeater_tag_loading_performance_short",
  2612. "on": true,
  2613. "prerequisites": [],
  2614. "targets": [],
  2615. "contextTargets": [],
  2616. "rules": [],
  2617. "fallthrough": {
  2618. "variation": 0
  2619. },
  2620. "offVariation": 1,
  2621. "variations": [
  2622. true,
  2623. false
  2624. ],
  2625. "clientSideAvailability": {
  2626. "usingMobileKey": false,
  2627. "usingEnvironmentId": false
  2628. },
  2629. "clientSide": false,
  2630. "salt": "0ec959822b674511aae50586b7eae9fc",
  2631. "trackEvents": false,
  2632. "trackEventsFallthrough": false,
  2633. "debugEventsUntilDate": null,
  2634. "version": 3,
  2635. "deleted": false
  2636. },
  2637. "fflag_feat_front_dev_3873_labeling_ui_improvements_short": {
  2638. "key": "fflag_feat_front_dev_3873_labeling_ui_improvements_short",
  2639. "on": true,
  2640. "prerequisites": [],
  2641. "targets": [],
  2642. "contextTargets": [],
  2643. "rules": [],
  2644. "fallthrough": {
  2645. "variation": 0
  2646. },
  2647. "offVariation": 1,
  2648. "variations": [
  2649. true,
  2650. false
  2651. ],
  2652. "clientSideAvailability": {
  2653. "usingMobileKey": true,
  2654. "usingEnvironmentId": false
  2655. },
  2656. "clientSide": false,
  2657. "salt": "ea02c8fb80a34239a5aedc42049069df",
  2658. "trackEvents": false,
  2659. "trackEventsFallthrough": false,
  2660. "debugEventsUntilDate": null,
  2661. "version": 5,
  2662. "deleted": false
  2663. },
  2664. "fflag_feat_front_dia_1747_projects_list_banner": {
  2665. "key": "fflag_feat_front_dia_1747_projects_list_banner",
  2666. "on": false,
  2667. "prerequisites": [],
  2668. "targets": [],
  2669. "contextTargets": [],
  2670. "rules": [],
  2671. "fallthrough": {
  2672. "variation": 0
  2673. },
  2674. "offVariation": 1,
  2675. "variations": [
  2676. true,
  2677. false
  2678. ],
  2679. "clientSideAvailability": {
  2680. "usingMobileKey": false,
  2681. "usingEnvironmentId": false
  2682. },
  2683. "clientSide": false,
  2684. "salt": "21bfa474c82b4ab0b89314fbecd164cc",
  2685. "trackEvents": false,
  2686. "trackEventsFallthrough": false,
  2687. "debugEventsUntilDate": null,
  2688. "version": 3,
  2689. "deleted": false
  2690. },
  2691. "fflag_feat_front_fit_183_email_notifications_short": {
  2692. "key": "fflag_feat_front_fit_183_email_notifications_short",
  2693. "on": true,
  2694. "prerequisites": [],
  2695. "targets": [],
  2696. "contextTargets": [],
  2697. "rules": [],
  2698. "fallthrough": {
  2699. "variation": 0
  2700. },
  2701. "offVariation": 1,
  2702. "variations": [
  2703. true,
  2704. false
  2705. ],
  2706. "clientSideAvailability": {
  2707. "usingMobileKey": false,
  2708. "usingEnvironmentId": false
  2709. },
  2710. "clientSide": false,
  2711. "salt": "ea8b324ddf9f4b94be35cc4ae4f41cc1",
  2712. "trackEvents": false,
  2713. "trackEventsFallthrough": false,
  2714. "debugEventsUntilDate": null,
  2715. "version": 3,
  2716. "deleted": false
  2717. },
  2718. "fflag_feat_front_leap_1173_disable_postpone_skip_short": {
  2719. "key": "fflag_feat_front_leap_1173_disable_postpone_skip_short",
  2720. "on": false,
  2721. "prerequisites": [],
  2722. "targets": [],
  2723. "contextTargets": [],
  2724. "rules": [],
  2725. "fallthrough": {
  2726. "variation": 0
  2727. },
  2728. "offVariation": 1,
  2729. "variations": [
  2730. true,
  2731. false
  2732. ],
  2733. "clientSideAvailability": {
  2734. "usingMobileKey": false,
  2735. "usingEnvironmentId": false
  2736. },
  2737. "clientSide": false,
  2738. "salt": "23ef99b0cc8a4a3c99a09e47268cabd6",
  2739. "trackEvents": false,
  2740. "trackEventsFallthrough": false,
  2741. "debugEventsUntilDate": null,
  2742. "version": 4,
  2743. "deleted": false
  2744. },
  2745. "fflag_feat_front_leap_1198_unsaved_changes_180724": {
  2746. "key": "fflag_feat_front_leap_1198_unsaved_changes_180724",
  2747. "on": true,
  2748. "prerequisites": [],
  2749. "targets": [],
  2750. "contextTargets": [],
  2751. "rules": [],
  2752. "fallthrough": {
  2753. "variation": 0
  2754. },
  2755. "offVariation": 1,
  2756. "variations": [
  2757. true,
  2758. false
  2759. ],
  2760. "clientSideAvailability": {
  2761. "usingMobileKey": false,
  2762. "usingEnvironmentId": false
  2763. },
  2764. "clientSide": false,
  2765. "salt": "fd634284baf64b30aae8a7fcfb13db18",
  2766. "trackEvents": false,
  2767. "trackEventsFallthrough": false,
  2768. "debugEventsUntilDate": null,
  2769. "version": 5,
  2770. "deleted": false
  2771. },
  2772. "fflag_feat_front_leap_1424_grid_preview_short": {
  2773. "key": "fflag_feat_front_leap_1424_grid_preview_short",
  2774. "on": true,
  2775. "prerequisites": [],
  2776. "targets": [],
  2777. "contextTargets": [],
  2778. "rules": [],
  2779. "fallthrough": {
  2780. "variation": 0
  2781. },
  2782. "offVariation": 1,
  2783. "variations": [
  2784. true,
  2785. false
  2786. ],
  2787. "clientSideAvailability": {
  2788. "usingMobileKey": false,
  2789. "usingEnvironmentId": false
  2790. },
  2791. "clientSide": false,
  2792. "salt": "dfdd8f564ddc4111b73f59594a17502d",
  2793. "trackEvents": false,
  2794. "trackEventsFallthrough": false,
  2795. "debugEventsUntilDate": null,
  2796. "version": 3,
  2797. "deleted": false
  2798. },
  2799. "fflag_feat_front_leap_1973_adjustable_spans_090425_short": {
  2800. "key": "fflag_feat_front_leap_1973_adjustable_spans_090425_short",
  2801. "on": true,
  2802. "prerequisites": [],
  2803. "targets": [],
  2804. "contextTargets": [],
  2805. "rules": [],
  2806. "fallthrough": {
  2807. "variation": 0
  2808. },
  2809. "offVariation": 1,
  2810. "variations": [
  2811. true,
  2812. false
  2813. ],
  2814. "clientSideAvailability": {
  2815. "usingMobileKey": false,
  2816. "usingEnvironmentId": false
  2817. },
  2818. "clientSide": false,
  2819. "salt": "7c699fb3534c4dd694aa9d59256e0f15",
  2820. "trackEvents": false,
  2821. "trackEventsFallthrough": false,
  2822. "debugEventsUntilDate": null,
  2823. "version": 4,
  2824. "deleted": false
  2825. },
  2826. "fflag_feat_front_leap_2036_annotations_summary": {
  2827. "key": "fflag_feat_front_leap_2036_annotations_summary",
  2828. "on": true,
  2829. "prerequisites": [],
  2830. "targets": [],
  2831. "contextTargets": [],
  2832. "rules": [],
  2833. "fallthrough": {
  2834. "variation": 0
  2835. },
  2836. "offVariation": 1,
  2837. "variations": [
  2838. true,
  2839. false
  2840. ],
  2841. "clientSideAvailability": {
  2842. "usingMobileKey": false,
  2843. "usingEnvironmentId": false
  2844. },
  2845. "clientSide": false,
  2846. "salt": "a0c67bbfb44743d6903c9445033c59c3",
  2847. "trackEvents": false,
  2848. "trackEventsFallthrough": false,
  2849. "debugEventsUntilDate": null,
  2850. "version": 4,
  2851. "deleted": false
  2852. },
  2853. "fflag_feat_front_leap_482_self_serve_short": {
  2854. "key": "fflag_feat_front_leap_482_self_serve_short",
  2855. "on": false,
  2856. "prerequisites": [],
  2857. "targets": [],
  2858. "contextTargets": [],
  2859. "rules": [],
  2860. "fallthrough": {
  2861. "variation": 0
  2862. },
  2863. "offVariation": 1,
  2864. "variations": [
  2865. true,
  2866. false
  2867. ],
  2868. "clientSideAvailability": {
  2869. "usingMobileKey": false,
  2870. "usingEnvironmentId": false
  2871. },
  2872. "clientSide": false,
  2873. "salt": "775b9819acb6465baae3d091647ef9b4",
  2874. "trackEvents": false,
  2875. "trackEventsFallthrough": false,
  2876. "debugEventsUntilDate": null,
  2877. "version": 6,
  2878. "deleted": false
  2879. },
  2880. "fflag_feat_front_lops_134_find_similarity_29082023_short": {
  2881. "key": "fflag_feat_front_lops_134_find_similarity_29082023_short",
  2882. "on": true,
  2883. "prerequisites": [],
  2884. "targets": [],
  2885. "contextTargets": [],
  2886. "rules": [],
  2887. "fallthrough": {
  2888. "variation": 1
  2889. },
  2890. "offVariation": 1,
  2891. "variations": [
  2892. true,
  2893. false
  2894. ],
  2895. "clientSideAvailability": {
  2896. "usingMobileKey": false,
  2897. "usingEnvironmentId": false
  2898. },
  2899. "clientSide": false,
  2900. "salt": "d1390aeb04d14bc581c5e244a2871588",
  2901. "trackEvents": false,
  2902. "trackEventsFallthrough": false,
  2903. "debugEventsUntilDate": null,
  2904. "version": 4,
  2905. "deleted": false
  2906. },
  2907. "fflag_feat_front_lsdv_4583_6_images_preloading_short": {
  2908. "key": "fflag_feat_front_lsdv_4583_6_images_preloading_short",
  2909. "on": true,
  2910. "prerequisites": [],
  2911. "targets": [],
  2912. "contextTargets": [],
  2913. "rules": [],
  2914. "fallthrough": {
  2915. "variation": 0
  2916. },
  2917. "offVariation": 1,
  2918. "variations": [
  2919. true,
  2920. false
  2921. ],
  2922. "clientSideAvailability": {
  2923. "usingMobileKey": false,
  2924. "usingEnvironmentId": false
  2925. },
  2926. "clientSide": false,
  2927. "salt": "9b2f7864ca074f5f8a0a4bfcae57bf86",
  2928. "trackEvents": false,
  2929. "trackEventsFallthrough": false,
  2930. "debugEventsUntilDate": null,
  2931. "version": 5,
  2932. "deleted": false
  2933. },
  2934. "fflag_feat_front_lsdv_4583_multi_image_segmentation_short": {
  2935. "key": "fflag_feat_front_lsdv_4583_multi_image_segmentation_short",
  2936. "on": true,
  2937. "prerequisites": [],
  2938. "targets": [],
  2939. "contextTargets": [],
  2940. "rules": [],
  2941. "fallthrough": {
  2942. "variation": 0
  2943. },
  2944. "offVariation": 1,
  2945. "variations": [
  2946. true,
  2947. false
  2948. ],
  2949. "clientSideAvailability": {
  2950. "usingMobileKey": false,
  2951. "usingEnvironmentId": false
  2952. },
  2953. "clientSide": false,
  2954. "salt": "2fd5d4989a174d679bde905ada2548af",
  2955. "trackEvents": false,
  2956. "trackEventsFallthrough": false,
  2957. "debugEventsUntilDate": null,
  2958. "version": 5,
  2959. "deleted": false
  2960. },
  2961. "fflag_feat_front_lsdv_5451_async_taxonomy_110823_short": {
  2962. "key": "fflag_feat_front_lsdv_5451_async_taxonomy_110823_short",
  2963. "on": true,
  2964. "prerequisites": [],
  2965. "targets": [],
  2966. "contextTargets": [],
  2967. "rules": [],
  2968. "fallthrough": {
  2969. "variation": 0
  2970. },
  2971. "offVariation": 1,
  2972. "variations": [
  2973. true,
  2974. false
  2975. ],
  2976. "clientSideAvailability": {
  2977. "usingMobileKey": false,
  2978. "usingEnvironmentId": false
  2979. },
  2980. "clientSide": false,
  2981. "salt": "384b6f4ac48b4f1fa88d7563e50973e1",
  2982. "trackEvents": false,
  2983. "trackEventsFallthrough": false,
  2984. "debugEventsUntilDate": null,
  2985. "version": 5,
  2986. "deleted": false
  2987. },
  2988. "fflag_feat_front_lsdv_5452_taxonomy_labeling_110823_short": {
  2989. "key": "fflag_feat_front_lsdv_5452_taxonomy_labeling_110823_short",
  2990. "on": true,
  2991. "prerequisites": [],
  2992. "targets": [],
  2993. "contextTargets": [],
  2994. "rules": [],
  2995. "fallthrough": {
  2996. "variation": 0
  2997. },
  2998. "offVariation": 1,
  2999. "variations": [
  3000. true,
  3001. false
  3002. ],
  3003. "clientSideAvailability": {
  3004. "usingMobileKey": false,
  3005. "usingEnvironmentId": false
  3006. },
  3007. "clientSide": false,
  3008. "salt": "d8b8859f42d044eb912ca2734826a58e",
  3009. "trackEvents": false,
  3010. "trackEventsFallthrough": false,
  3011. "debugEventsUntilDate": null,
  3012. "version": 4,
  3013. "deleted": false
  3014. },
  3015. "fflag_feat_front_lsdv_e_278_contextual_scrolling_short": {
  3016. "key": "fflag_feat_front_lsdv_e_278_contextual_scrolling_short",
  3017. "on": true,
  3018. "prerequisites": [],
  3019. "targets": [],
  3020. "contextTargets": [],
  3021. "rules": [],
  3022. "fallthrough": {
  3023. "variation": 0
  3024. },
  3025. "offVariation": 1,
  3026. "variations": [
  3027. true,
  3028. false
  3029. ],
  3030. "clientSideAvailability": {
  3031. "usingMobileKey": false,
  3032. "usingEnvironmentId": false
  3033. },
  3034. "clientSide": false,
  3035. "salt": "04cfe1dec05344db9c20e81663546744",
  3036. "trackEvents": false,
  3037. "trackEventsFallthrough": false,
  3038. "debugEventsUntilDate": null,
  3039. "version": 6,
  3040. "deleted": false
  3041. },
  3042. "fflag_feat_front_lsdv_e_297_increase_oss_to_enterprise_adoption_short": {
  3043. "key": "fflag_feat_front_lsdv_e_297_increase_oss_to_enterprise_adoption_short",
  3044. "on": true,
  3045. "prerequisites": [],
  3046. "targets": [],
  3047. "contextTargets": [],
  3048. "rules": [],
  3049. "fallthrough": {
  3050. "variation": 0
  3051. },
  3052. "offVariation": 1,
  3053. "variations": [
  3054. true,
  3055. false
  3056. ],
  3057. "clientSideAvailability": {
  3058. "usingMobileKey": false,
  3059. "usingEnvironmentId": false
  3060. },
  3061. "clientSide": false,
  3062. "salt": "3e7648d6922e412a9e512fbfed2074c9",
  3063. "trackEvents": false,
  3064. "trackEventsFallthrough": false,
  3065. "debugEventsUntilDate": null,
  3066. "version": 16,
  3067. "deleted": false
  3068. },
  3069. "fflag_feat_front_optic_1217_theme_toggle_short": {
  3070. "key": "fflag_feat_front_optic_1217_theme_toggle_short",
  3071. "on": true,
  3072. "prerequisites": [],
  3073. "targets": [],
  3074. "contextTargets": [],
  3075. "rules": [],
  3076. "fallthrough": {
  3077. "variation": 0
  3078. },
  3079. "offVariation": 1,
  3080. "variations": [
  3081. true,
  3082. false
  3083. ],
  3084. "clientSideAvailability": {
  3085. "usingMobileKey": false,
  3086. "usingEnvironmentId": false
  3087. },
  3088. "clientSide": false,
  3089. "salt": "1b3bca98ba6c4a7bb5559e50c280cf4a",
  3090. "trackEvents": false,
  3091. "trackEventsFallthrough": false,
  3092. "debugEventsUntilDate": null,
  3093. "version": 4,
  3094. "deleted": false
  3095. },
  3096. "fflag_feat_front_optic_1479_improve_image_tag_memory_usage_short": {
  3097. "key": "fflag_feat_front_optic_1479_improve_image_tag_memory_usage_short",
  3098. "on": true,
  3099. "prerequisites": [],
  3100. "targets": [],
  3101. "contextTargets": [],
  3102. "rules": [],
  3103. "fallthrough": {
  3104. "variation": 0
  3105. },
  3106. "offVariation": 1,
  3107. "variations": [
  3108. true,
  3109. false
  3110. ],
  3111. "clientSideAvailability": {
  3112. "usingMobileKey": false,
  3113. "usingEnvironmentId": false
  3114. },
  3115. "clientSide": false,
  3116. "salt": "21716e7aae704a6cb04f7d72ee5cff33",
  3117. "trackEvents": false,
  3118. "trackEventsFallthrough": false,
  3119. "debugEventsUntilDate": null,
  3120. "version": 3,
  3121. "deleted": false
  3122. },
  3123. "fflag_feat_front_optic_1746_improve_global_error_messages_short": {
  3124. "key": "fflag_feat_front_optic_1746_improve_global_error_messages_short",
  3125. "on": true,
  3126. "prerequisites": [],
  3127. "targets": [],
  3128. "contextTargets": [],
  3129. "rules": [],
  3130. "fallthrough": {
  3131. "variation": 0
  3132. },
  3133. "offVariation": 1,
  3134. "variations": [
  3135. true,
  3136. false
  3137. ],
  3138. "clientSideAvailability": {
  3139. "usingMobileKey": false,
  3140. "usingEnvironmentId": false
  3141. },
  3142. "clientSide": false,
  3143. "salt": "e31a1913483c4765a2eda65c37577ff3",
  3144. "trackEvents": false,
  3145. "trackEventsFallthrough": false,
  3146. "debugEventsUntilDate": null,
  3147. "version": 3,
  3148. "deleted": false
  3149. },
  3150. "fflag_feat_front_optic_66_lazy_chart_evaluation_19092023_short": {
  3151. "key": "fflag_feat_front_optic_66_lazy_chart_evaluation_19092023_short",
  3152. "on": true,
  3153. "prerequisites": [],
  3154. "targets": [],
  3155. "contextTargets": [],
  3156. "rules": [],
  3157. "fallthrough": {
  3158. "variation": 0
  3159. },
  3160. "offVariation": 1,
  3161. "variations": [
  3162. true,
  3163. false
  3164. ],
  3165. "clientSideAvailability": {
  3166. "usingMobileKey": false,
  3167. "usingEnvironmentId": false
  3168. },
  3169. "clientSide": false,
  3170. "salt": "fa6d1be06b5e4078930ac6bb768c1f5d",
  3171. "trackEvents": false,
  3172. "trackEventsFallthrough": false,
  3173. "debugEventsUntilDate": null,
  3174. "version": 4,
  3175. "deleted": false
  3176. },
  3177. "fflag_feat_front_optic_optic_1442_hubspot_talk_to_sales_modal_short": {
  3178. "key": "fflag_feat_front_optic_optic_1442_hubspot_talk_to_sales_modal_short",
  3179. "on": false,
  3180. "prerequisites": [],
  3181. "targets": [],
  3182. "contextTargets": [],
  3183. "rules": [],
  3184. "fallthrough": {
  3185. "variation": 0
  3186. },
  3187. "offVariation": 1,
  3188. "variations": [
  3189. true,
  3190. false
  3191. ],
  3192. "clientSideAvailability": {
  3193. "usingMobileKey": false,
  3194. "usingEnvironmentId": false
  3195. },
  3196. "clientSide": false,
  3197. "salt": "d5eba9242d7b470abdf91e06b284e5dd",
  3198. "trackEvents": false,
  3199. "trackEventsFallthrough": false,
  3200. "debugEventsUntilDate": null,
  3201. "version": 2,
  3202. "deleted": false
  3203. },
  3204. "fflag_feat_optic_1025_zendesk_widget_integration": {
  3205. "key": "fflag_feat_optic_1025_zendesk_widget_integration",
  3206. "on": false,
  3207. "prerequisites": [],
  3208. "targets": [],
  3209. "contextTargets": [],
  3210. "rules": [],
  3211. "fallthrough": {
  3212. "variation": 1
  3213. },
  3214. "offVariation": 1,
  3215. "variations": [
  3216. true,
  3217. false
  3218. ],
  3219. "clientSideAvailability": {
  3220. "usingMobileKey": false,
  3221. "usingEnvironmentId": false
  3222. },
  3223. "clientSide": false,
  3224. "salt": "98f5d577937c47528ce3105baf9f7f91",
  3225. "trackEvents": false,
  3226. "trackEventsFallthrough": false,
  3227. "debugEventsUntilDate": null,
  3228. "version": 3,
  3229. "deleted": false
  3230. },
  3231. "fflag_feat_optic_2123_audio_spectrograms": {
  3232. "key": "fflag_feat_optic_2123_audio_spectrograms",
  3233. "on": true,
  3234. "prerequisites": [],
  3235. "targets": [],
  3236. "contextTargets": [],
  3237. "rules": [],
  3238. "fallthrough": {
  3239. "variation": 0
  3240. },
  3241. "offVariation": 1,
  3242. "variations": [
  3243. true,
  3244. false
  3245. ],
  3246. "clientSideAvailability": {
  3247. "usingMobileKey": false,
  3248. "usingEnvironmentId": false
  3249. },
  3250. "clientSide": false,
  3251. "salt": "22c39d2de39640dbbce81c06559cfce7",
  3252. "trackEvents": false,
  3253. "trackEventsFallthrough": false,
  3254. "debugEventsUntilDate": null,
  3255. "version": 3,
  3256. "deleted": false
  3257. },
  3258. "fflag_feat_optic_2125_timeseries_sync": {
  3259. "key": "fflag_feat_optic_2125_timeseries_sync",
  3260. "on": true,
  3261. "prerequisites": [],
  3262. "targets": [],
  3263. "contextTargets": [],
  3264. "rules": [],
  3265. "fallthrough": {
  3266. "variation": 0
  3267. },
  3268. "offVariation": 1,
  3269. "variations": [
  3270. true,
  3271. false
  3272. ],
  3273. "clientSideAvailability": {
  3274. "usingMobileKey": false,
  3275. "usingEnvironmentId": false
  3276. },
  3277. "clientSide": false,
  3278. "salt": "c97ee12f1c2a46918bffcda57fbd822b",
  3279. "trackEvents": false,
  3280. "trackEventsFallthrough": false,
  3281. "debugEventsUntilDate": null,
  3282. "version": 5,
  3283. "deleted": false
  3284. },
  3285. "fflag_feat_optic_378_limit_projects_per_page_to_ten_short": {
  3286. "key": "fflag_feat_optic_378_limit_projects_per_page_to_ten_short",
  3287. "on": false,
  3288. "prerequisites": [],
  3289. "targets": [],
  3290. "contextTargets": [],
  3291. "rules": [],
  3292. "fallthrough": {
  3293. "variation": 1
  3294. },
  3295. "offVariation": 1,
  3296. "variations": [
  3297. true,
  3298. false
  3299. ],
  3300. "clientSideAvailability": {
  3301. "usingMobileKey": false,
  3302. "usingEnvironmentId": false
  3303. },
  3304. "clientSide": false,
  3305. "salt": "ba4bc211dec84a63b9bd523ad75a1192",
  3306. "trackEvents": false,
  3307. "trackEventsFallthrough": false,
  3308. "debugEventsUntilDate": null,
  3309. "version": 2,
  3310. "deleted": false
  3311. },
  3312. "fflag_feat_optic_650_target_storage_task_format_long": {
  3313. "key": "fflag_feat_optic_650_target_storage_task_format_long",
  3314. "on": false,
  3315. "prerequisites": [],
  3316. "targets": [],
  3317. "contextTargets": [],
  3318. "rules": [],
  3319. "fallthrough": {
  3320. "variation": 0
  3321. },
  3322. "offVariation": 1,
  3323. "variations": [
  3324. true,
  3325. false
  3326. ],
  3327. "clientSideAvailability": {
  3328. "usingMobileKey": false,
  3329. "usingEnvironmentId": false
  3330. },
  3331. "clientSide": false,
  3332. "salt": "91ce1d8a88364b879d17d679d50360b4",
  3333. "trackEvents": false,
  3334. "trackEventsFallthrough": false,
  3335. "debugEventsUntilDate": null,
  3336. "version": 3,
  3337. "deleted": false
  3338. },
  3339. "fflag_feat_root_11_support_jsonl_cloud_storage": {
  3340. "key": "fflag_feat_root_11_support_jsonl_cloud_storage",
  3341. "on": true,
  3342. "prerequisites": [],
  3343. "targets": [],
  3344. "contextTargets": [],
  3345. "rules": [],
  3346. "fallthrough": {
  3347. "variation": 0
  3348. },
  3349. "offVariation": 1,
  3350. "variations": [
  3351. true,
  3352. false
  3353. ],
  3354. "clientSideAvailability": {
  3355. "usingMobileKey": false,
  3356. "usingEnvironmentId": false
  3357. },
  3358. "clientSide": false,
  3359. "salt": "85e018dcd2e64c689a61ee7ed3c5edb2",
  3360. "trackEvents": false,
  3361. "trackEventsFallthrough": false,
  3362. "debugEventsUntilDate": null,
  3363. "version": 3,
  3364. "deleted": false
  3365. },
  3366. "fflag_feat_root_16_support_parquet_cloud_storage": {
  3367. "key": "fflag_feat_root_16_support_parquet_cloud_storage",
  3368. "on": true,
  3369. "prerequisites": [],
  3370. "targets": [],
  3371. "contextTargets": [],
  3372. "rules": [],
  3373. "fallthrough": {
  3374. "variation": 0
  3375. },
  3376. "offVariation": 1,
  3377. "variations": [
  3378. true,
  3379. false
  3380. ],
  3381. "clientSideAvailability": {
  3382. "usingMobileKey": false,
  3383. "usingEnvironmentId": false
  3384. },
  3385. "clientSide": false,
  3386. "salt": "19f34d7d3a734e56828582f4db176382",
  3387. "trackEvents": false,
  3388. "trackEventsFallthrough": false,
  3389. "debugEventsUntilDate": null,
  3390. "version": 3,
  3391. "deleted": false
  3392. },
  3393. "fflag_feat_root_47_plugins_without_eval": {
  3394. "key": "fflag_feat_root_47_plugins_without_eval",
  3395. "on": false,
  3396. "prerequisites": [],
  3397. "targets": [],
  3398. "contextTargets": [],
  3399. "rules": [],
  3400. "fallthrough": {
  3401. "variation": 0
  3402. },
  3403. "offVariation": 1,
  3404. "variations": [
  3405. true,
  3406. false
  3407. ],
  3408. "clientSideAvailability": {
  3409. "usingMobileKey": false,
  3410. "usingEnvironmentId": false
  3411. },
  3412. "clientSide": false,
  3413. "salt": "f580cdbb4b4049feadc3d24d64e4be0a",
  3414. "trackEvents": false,
  3415. "trackEventsFallthrough": false,
  3416. "debugEventsUntilDate": null,
  3417. "version": 3,
  3418. "deleted": false
  3419. },
  3420. "fflag_feat_utc_161_bulk_queue_total_11072025_short": {
  3421. "key": "fflag_feat_utc_161_bulk_queue_total_11072025_short",
  3422. "on": false,
  3423. "prerequisites": [],
  3424. "targets": [],
  3425. "contextTargets": [],
  3426. "rules": [],
  3427. "fallthrough": {
  3428. "variation": 0
  3429. },
  3430. "offVariation": 1,
  3431. "variations": [
  3432. true,
  3433. false
  3434. ],
  3435. "clientSideAvailability": {
  3436. "usingMobileKey": false,
  3437. "usingEnvironmentId": false
  3438. },
  3439. "clientSide": false,
  3440. "salt": "17decd616a69458eb28018c2b293c99a",
  3441. "trackEvents": false,
  3442. "trackEventsFallthrough": false,
  3443. "debugEventsUntilDate": null,
  3444. "version": 2,
  3445. "deleted": false
  3446. },
  3447. "fflag_feat_utc_210_prediction_validation_15082025": {
  3448. "key": "fflag_feat_utc_210_prediction_validation_15082025",
  3449. "on": false,
  3450. "prerequisites": [],
  3451. "targets": [],
  3452. "contextTargets": [],
  3453. "rules": [],
  3454. "fallthrough": {
  3455. "variation": 0
  3456. },
  3457. "offVariation": 1,
  3458. "variations": [
  3459. true,
  3460. false
  3461. ],
  3462. "clientSideAvailability": {
  3463. "usingMobileKey": false,
  3464. "usingEnvironmentId": false
  3465. },
  3466. "clientSide": false,
  3467. "salt": "89569f115281416392e46d3d5af71f42",
  3468. "trackEvents": false,
  3469. "trackEventsFallthrough": false,
  3470. "debugEventsUntilDate": null,
  3471. "version": 2,
  3472. "deleted": false
  3473. },
  3474. "fflag_feat_utc_239_filterable_agreement_column_short": {
  3475. "key": "fflag_feat_utc_239_filterable_agreement_column_short",
  3476. "on": false,
  3477. "prerequisites": [],
  3478. "targets": [],
  3479. "contextTargets": [],
  3480. "rules": [],
  3481. "fallthrough": {
  3482. "variation": 0
  3483. },
  3484. "offVariation": 1,
  3485. "variations": [
  3486. true,
  3487. false
  3488. ],
  3489. "clientSideAvailability": {
  3490. "usingMobileKey": false,
  3491. "usingEnvironmentId": false
  3492. },
  3493. "clientSide": false,
  3494. "salt": "58a7562df60047acb3b2cac8dfb7bd1e",
  3495. "trackEvents": false,
  3496. "trackEventsFallthrough": false,
  3497. "debugEventsUntilDate": null,
  3498. "version": 2,
  3499. "deleted": false
  3500. },
  3501. "fflag_feat_utc_384_manage_members_v2": {
  3502. "key": "fflag_feat_utc_384_manage_members_v2",
  3503. "on": false,
  3504. "prerequisites": [],
  3505. "targets": [],
  3506. "contextTargets": [],
  3507. "rules": [],
  3508. "fallthrough": {
  3509. "variation": 0
  3510. },
  3511. "offVariation": 1,
  3512. "variations": [
  3513. true,
  3514. false
  3515. ],
  3516. "clientSideAvailability": {
  3517. "usingMobileKey": false,
  3518. "usingEnvironmentId": false
  3519. },
  3520. "clientSide": false,
  3521. "salt": "5de71047836a4339b34bd9d5bd6c5b5c",
  3522. "trackEvents": false,
  3523. "trackEventsFallthrough": false,
  3524. "debugEventsUntilDate": null,
  3525. "version": 2,
  3526. "deleted": false
  3527. },
  3528. "fflag_feature_all_optic_1421_cold_start_v2": {
  3529. "key": "fflag_feature_all_optic_1421_cold_start_v2",
  3530. "on": false,
  3531. "prerequisites": [],
  3532. "targets": [],
  3533. "contextTargets": [],
  3534. "rules": [],
  3535. "fallthrough": {
  3536. "variation": 0
  3537. },
  3538. "offVariation": 1,
  3539. "variations": [
  3540. true,
  3541. false
  3542. ],
  3543. "clientSideAvailability": {
  3544. "usingMobileKey": false,
  3545. "usingEnvironmentId": false
  3546. },
  3547. "clientSide": false,
  3548. "salt": "d57e006e30b849a0b33264c536a6f685",
  3549. "trackEvents": false,
  3550. "trackEventsFallthrough": false,
  3551. "debugEventsUntilDate": null,
  3552. "version": 4,
  3553. "deleted": false
  3554. },
  3555. "fflag_feature_all_optic_1541_performance_score_on_latest_review_short": {
  3556. "key": "fflag_feature_all_optic_1541_performance_score_on_latest_review_short",
  3557. "on": false,
  3558. "prerequisites": [],
  3559. "targets": [],
  3560. "contextTargets": [],
  3561. "rules": [],
  3562. "fallthrough": {
  3563. "variation": 0
  3564. },
  3565. "offVariation": 1,
  3566. "variations": [
  3567. true,
  3568. false
  3569. ],
  3570. "clientSideAvailability": {
  3571. "usingMobileKey": false,
  3572. "usingEnvironmentId": false
  3573. },
  3574. "clientSide": false,
  3575. "salt": "9a52adb8dcdf49e4b1c9d18ec8441ec9",
  3576. "trackEvents": false,
  3577. "trackEventsFallthrough": false,
  3578. "debugEventsUntilDate": null,
  3579. "version": 2,
  3580. "deleted": false
  3581. },
  3582. "fflag_fit_1158_unlimit_analytics_mp": {
  3583. "key": "fflag_fit_1158_unlimit_analytics_mp",
  3584. "on": true,
  3585. "prerequisites": [],
  3586. "targets": [],
  3587. "contextTargets": [],
  3588. "rules": [],
  3589. "fallthrough": {
  3590. "variation": 0
  3591. },
  3592. "offVariation": 1,
  3593. "variations": [
  3594. true,
  3595. false
  3596. ],
  3597. "clientSideAvailability": {
  3598. "usingMobileKey": false,
  3599. "usingEnvironmentId": false
  3600. },
  3601. "clientSide": false,
  3602. "salt": "7cdd2d830a194423bab9e645666dc45b",
  3603. "trackEvents": false,
  3604. "trackEventsFallthrough": false,
  3605. "debugEventsUntilDate": null,
  3606. "version": 3,
  3607. "deleted": false
  3608. },
  3609. "fflag_fix_all_leap_877_annotator_membership_api_03042024_short": {
  3610. "key": "fflag_fix_all_leap_877_annotator_membership_api_03042024_short",
  3611. "on": false,
  3612. "prerequisites": [],
  3613. "targets": [],
  3614. "contextTargets": [],
  3615. "rules": [],
  3616. "fallthrough": {
  3617. "variation": 0
  3618. },
  3619. "offVariation": 1,
  3620. "variations": [
  3621. true,
  3622. false
  3623. ],
  3624. "clientSideAvailability": {
  3625. "usingMobileKey": false,
  3626. "usingEnvironmentId": false
  3627. },
  3628. "clientSide": false,
  3629. "salt": "f04c36c72422448ba39bc3cc00622b31",
  3630. "trackEvents": false,
  3631. "trackEventsFallthrough": false,
  3632. "debugEventsUntilDate": null,
  3633. "version": 3,
  3634. "deleted": false
  3635. },
  3636. "fflag_fix_all_lsdv_4813_async_export_conversion_22032023_short": {
  3637. "key": "fflag_fix_all_lsdv_4813_async_export_conversion_22032023_short",
  3638. "on": false,
  3639. "prerequisites": [],
  3640. "targets": [],
  3641. "contextTargets": [],
  3642. "rules": [],
  3643. "fallthrough": {
  3644. "variation": 0
  3645. },
  3646. "offVariation": 1,
  3647. "variations": [
  3648. true,
  3649. false
  3650. ],
  3651. "clientSideAvailability": {
  3652. "usingMobileKey": false,
  3653. "usingEnvironmentId": false
  3654. },
  3655. "clientSide": false,
  3656. "salt": "081693f1f8494644a4aa0cd80c5367f5",
  3657. "trackEvents": false,
  3658. "trackEventsFallthrough": false,
  3659. "debugEventsUntilDate": null,
  3660. "version": 5,
  3661. "deleted": false
  3662. },
  3663. "fflag_fix_all_lsdv_4896_dm_actions_to_reviewers_20230403_short": {
  3664. "key": "fflag_fix_all_lsdv_4896_dm_actions_to_reviewers_20230403_short",
  3665. "on": false,
  3666. "prerequisites": [],
  3667. "targets": [],
  3668. "contextTargets": [],
  3669. "rules": [],
  3670. "fallthrough": {
  3671. "variation": 0
  3672. },
  3673. "offVariation": 1,
  3674. "variations": [
  3675. true,
  3676. false
  3677. ],
  3678. "clientSideAvailability": {
  3679. "usingMobileKey": false,
  3680. "usingEnvironmentId": false
  3681. },
  3682. "clientSide": false,
  3683. "salt": "76c7753b7a984dac8845a7673ee2dc06",
  3684. "trackEvents": false,
  3685. "trackEventsFallthrough": false,
  3686. "debugEventsUntilDate": null,
  3687. "version": 3,
  3688. "deleted": false
  3689. },
  3690. "fflag_fix_all_optic_18_dashboard_label_distribution_chart_async_22082023_short": {
  3691. "key": "fflag_fix_all_optic_18_dashboard_label_distribution_chart_async_22082023_short",
  3692. "on": false,
  3693. "prerequisites": [],
  3694. "targets": [],
  3695. "contextTargets": [],
  3696. "rules": [],
  3697. "fallthrough": {
  3698. "variation": 0
  3699. },
  3700. "offVariation": 1,
  3701. "variations": [
  3702. true,
  3703. false
  3704. ],
  3705. "clientSideAvailability": {
  3706. "usingMobileKey": false,
  3707. "usingEnvironmentId": false
  3708. },
  3709. "clientSide": false,
  3710. "salt": "9d72a066d0444d80815883d0208996dc",
  3711. "trackEvents": false,
  3712. "trackEventsFallthrough": false,
  3713. "debugEventsUntilDate": null,
  3714. "version": 4,
  3715. "deleted": false
  3716. },
  3717. "fflag_fix_all_optic_79_task_count_is_wrong_short": {
  3718. "key": "fflag_fix_all_optic_79_task_count_is_wrong_short",
  3719. "on": false,
  3720. "prerequisites": [],
  3721. "targets": [],
  3722. "contextTargets": [],
  3723. "rules": [],
  3724. "fallthrough": {
  3725. "variation": 0
  3726. },
  3727. "offVariation": 1,
  3728. "variations": [
  3729. true,
  3730. false
  3731. ],
  3732. "clientSideAvailability": {
  3733. "usingMobileKey": false,
  3734. "usingEnvironmentId": true
  3735. },
  3736. "clientSide": true,
  3737. "salt": "a5735954e251447386d319899754e210",
  3738. "trackEvents": false,
  3739. "trackEventsFallthrough": false,
  3740. "debugEventsUntilDate": null,
  3741. "version": 4,
  3742. "deleted": false
  3743. },
  3744. "fflag_fix_back_4620_memory_efficient_predictions_import_08012025_short": {
  3745. "key": "fflag_fix_back_4620_memory_efficient_predictions_import_08012025_short",
  3746. "on": false,
  3747. "prerequisites": [],
  3748. "targets": [],
  3749. "contextTargets": [],
  3750. "rules": [],
  3751. "fallthrough": {
  3752. "variation": 0
  3753. },
  3754. "offVariation": 1,
  3755. "variations": [
  3756. true,
  3757. false
  3758. ],
  3759. "clientSideAvailability": {
  3760. "usingMobileKey": false,
  3761. "usingEnvironmentId": false
  3762. },
  3763. "clientSide": false,
  3764. "salt": "43e3fb5be5084d848c08a2d9759d0b86",
  3765. "trackEvents": false,
  3766. "trackEventsFallthrough": false,
  3767. "debugEventsUntilDate": null,
  3768. "version": 2,
  3769. "deleted": false
  3770. },
  3771. "fflag_fix_back_bros_182_api_task_optimizations": {
  3772. "key": "fflag_fix_back_bros_182_api_task_optimizations",
  3773. "on": true,
  3774. "prerequisites": [],
  3775. "targets": [],
  3776. "contextTargets": [],
  3777. "rules": [],
  3778. "fallthrough": {
  3779. "variation": 0
  3780. },
  3781. "offVariation": 1,
  3782. "variations": [
  3783. true,
  3784. false
  3785. ],
  3786. "clientSideAvailability": {
  3787. "usingMobileKey": false,
  3788. "usingEnvironmentId": false
  3789. },
  3790. "clientSide": false,
  3791. "salt": "574479ada5b54372b874f9702e2907f9",
  3792. "trackEvents": false,
  3793. "trackEventsFallthrough": false,
  3794. "debugEventsUntilDate": null,
  3795. "version": 4,
  3796. "deleted": false
  3797. },
  3798. "fflag_fix_back_dev_3668_review_stream_optimizaion_short": {
  3799. "key": "fflag_fix_back_dev_3668_review_stream_optimizaion_short",
  3800. "on": false,
  3801. "prerequisites": [],
  3802. "targets": [],
  3803. "contextTargets": [],
  3804. "rules": [],
  3805. "fallthrough": {
  3806. "variation": 0
  3807. },
  3808. "offVariation": 1,
  3809. "variations": [
  3810. true,
  3811. false
  3812. ],
  3813. "clientSideAvailability": {
  3814. "usingMobileKey": true,
  3815. "usingEnvironmentId": false
  3816. },
  3817. "clientSide": false,
  3818. "salt": "58a0578267584d09a8467abe746a4897",
  3819. "trackEvents": false,
  3820. "trackEventsFallthrough": false,
  3821. "debugEventsUntilDate": null,
  3822. "version": 2,
  3823. "deleted": false
  3824. },
  3825. "fflag_fix_back_dev_4174_overlap_issue_experiments_10012023_short": {
  3826. "key": "fflag_fix_back_dev_4174_overlap_issue_experiments_10012023_short",
  3827. "on": false,
  3828. "prerequisites": [],
  3829. "targets": [],
  3830. "contextTargets": [],
  3831. "rules": [],
  3832. "fallthrough": {
  3833. "variation": 0
  3834. },
  3835. "offVariation": 1,
  3836. "variations": [
  3837. true,
  3838. false
  3839. ],
  3840. "clientSideAvailability": {
  3841. "usingMobileKey": false,
  3842. "usingEnvironmentId": false
  3843. },
  3844. "clientSide": false,
  3845. "salt": "8bcf48d51d93450c89981129796f1e48",
  3846. "trackEvents": false,
  3847. "trackEventsFallthrough": false,
  3848. "debugEventsUntilDate": null,
  3849. "version": 5,
  3850. "deleted": false
  3851. },
  3852. "fflag_fix_back_dev_4185_next_task_additional_logging_long": {
  3853. "key": "fflag_fix_back_dev_4185_next_task_additional_logging_long",
  3854. "on": false,
  3855. "prerequisites": [],
  3856. "targets": [],
  3857. "contextTargets": [],
  3858. "rules": [],
  3859. "fallthrough": {
  3860. "variation": 0
  3861. },
  3862. "offVariation": 1,
  3863. "variations": [
  3864. true,
  3865. false
  3866. ],
  3867. "clientSideAvailability": {
  3868. "usingMobileKey": false,
  3869. "usingEnvironmentId": false
  3870. },
  3871. "clientSide": false,
  3872. "salt": "50327b7ef2a146dc9aff924769111066",
  3873. "trackEvents": false,
  3874. "trackEventsFallthrough": false,
  3875. "debugEventsUntilDate": null,
  3876. "version": 2,
  3877. "deleted": false
  3878. },
  3879. "fflag_fix_back_leap_1818_set_convert_background_failure_logging_02062025_short": {
  3880. "key": "fflag_fix_back_leap_1818_set_convert_background_failure_logging_02062025_short",
  3881. "on": true,
  3882. "prerequisites": [],
  3883. "targets": [],
  3884. "contextTargets": [],
  3885. "rules": [],
  3886. "fallthrough": {
  3887. "variation": 0
  3888. },
  3889. "offVariation": 1,
  3890. "variations": [
  3891. true,
  3892. false
  3893. ],
  3894. "clientSideAvailability": {
  3895. "usingMobileKey": false,
  3896. "usingEnvironmentId": false
  3897. },
  3898. "clientSide": false,
  3899. "salt": "d6b27cf5610448b1bea29d4af46e0043",
  3900. "trackEvents": false,
  3901. "trackEventsFallthrough": false,
  3902. "debugEventsUntilDate": null,
  3903. "version": 3,
  3904. "deleted": false
  3905. },
  3906. "fflag_fix_back_lsdv_4523_show_overlap_first_order_27022023_short": {
  3907. "key": "fflag_fix_back_lsdv_4523_show_overlap_first_order_27022023_short",
  3908. "on": false,
  3909. "prerequisites": [],
  3910. "targets": [],
  3911. "contextTargets": [],
  3912. "rules": [],
  3913. "fallthrough": {
  3914. "variation": 0
  3915. },
  3916. "offVariation": 1,
  3917. "variations": [
  3918. true,
  3919. false
  3920. ],
  3921. "clientSideAvailability": {
  3922. "usingMobileKey": false,
  3923. "usingEnvironmentId": false
  3924. },
  3925. "clientSide": false,
  3926. "salt": "69f53396c78443738f4cbb0afa203960",
  3927. "trackEvents": false,
  3928. "trackEventsFallthrough": false,
  3929. "debugEventsUntilDate": null,
  3930. "version": 2,
  3931. "deleted": false
  3932. },
  3933. "fflag_fix_back_lsdv_4604_excess_sql_queries_in_api_short": {
  3934. "key": "fflag_fix_back_lsdv_4604_excess_sql_queries_in_api_short",
  3935. "on": true,
  3936. "prerequisites": [],
  3937. "targets": [],
  3938. "contextTargets": [],
  3939. "rules": [],
  3940. "fallthrough": {
  3941. "variation": 0
  3942. },
  3943. "offVariation": 1,
  3944. "variations": [
  3945. true,
  3946. false
  3947. ],
  3948. "clientSideAvailability": {
  3949. "usingMobileKey": false,
  3950. "usingEnvironmentId": false
  3951. },
  3952. "clientSide": false,
  3953. "salt": "439816e9dbcc4c27b600cc97c9a25e6b",
  3954. "trackEvents": false,
  3955. "trackEventsFallthrough": false,
  3956. "debugEventsUntilDate": null,
  3957. "version": 5,
  3958. "deleted": false
  3959. },
  3960. "fflag_fix_back_lsdv_4929_limit_exports_10042023_short": {
  3961. "key": "fflag_fix_back_lsdv_4929_limit_exports_10042023_short",
  3962. "on": true,
  3963. "prerequisites": [],
  3964. "targets": [],
  3965. "contextTargets": [],
  3966. "rules": [],
  3967. "fallthrough": {
  3968. "variation": 0
  3969. },
  3970. "offVariation": 1,
  3971. "variations": [
  3972. true,
  3973. false
  3974. ],
  3975. "clientSideAvailability": {
  3976. "usingMobileKey": false,
  3977. "usingEnvironmentId": false
  3978. },
  3979. "clientSide": false,
  3980. "salt": "bb069bd904a64607b36ea05d01651565",
  3981. "trackEvents": false,
  3982. "trackEventsFallthrough": false,
  3983. "debugEventsUntilDate": null,
  3984. "version": 3,
  3985. "deleted": false
  3986. },
  3987. "fflag_fix_back_lsdv_5425_1_enable_permissions_restrictions_for_annotators_long": {
  3988. "key": "fflag_fix_back_lsdv_5425_1_enable_permissions_restrictions_for_annotators_long",
  3989. "on": false,
  3990. "prerequisites": [],
  3991. "targets": [],
  3992. "contextTargets": [],
  3993. "rules": [],
  3994. "fallthrough": {
  3995. "variation": 0
  3996. },
  3997. "offVariation": 1,
  3998. "variations": [
  3999. true,
  4000. false
  4001. ],
  4002. "clientSideAvailability": {
  4003. "usingMobileKey": false,
  4004. "usingEnvironmentId": false
  4005. },
  4006. "clientSide": false,
  4007. "salt": "b7efe0dcbda547e9937a2340e40b13d4",
  4008. "trackEvents": false,
  4009. "trackEventsFallthrough": false,
  4010. "debugEventsUntilDate": null,
  4011. "version": 6,
  4012. "deleted": false
  4013. },
  4014. "fflag_fix_back_optic_1380_dashboard_task_chart_grouped_by_completed_at_reviewed_at_short": {
  4015. "key": "fflag_fix_back_optic_1380_dashboard_task_chart_grouped_by_completed_at_reviewed_at_short",
  4016. "on": true,
  4017. "prerequisites": [],
  4018. "targets": [],
  4019. "contextTargets": [],
  4020. "rules": [],
  4021. "fallthrough": {
  4022. "variation": 0
  4023. },
  4024. "offVariation": 1,
  4025. "variations": [
  4026. true,
  4027. false
  4028. ],
  4029. "clientSideAvailability": {
  4030. "usingMobileKey": false,
  4031. "usingEnvironmentId": false
  4032. },
  4033. "clientSide": false,
  4034. "salt": "5d10b576ced444f9ae782e07cd3d5ef2",
  4035. "trackEvents": false,
  4036. "trackEventsFallthrough": false,
  4037. "debugEventsUntilDate": null,
  4038. "version": 3,
  4039. "deleted": false
  4040. },
  4041. "fflag_fix_back_optic_1407_optimize_tasks_api_pagination_counts": {
  4042. "key": "fflag_fix_back_optic_1407_optimize_tasks_api_pagination_counts",
  4043. "on": true,
  4044. "prerequisites": [],
  4045. "targets": [],
  4046. "contextTargets": [],
  4047. "rules": [],
  4048. "fallthrough": {
  4049. "variation": 0
  4050. },
  4051. "offVariation": 1,
  4052. "variations": [
  4053. true,
  4054. false
  4055. ],
  4056. "clientSideAvailability": {
  4057. "usingMobileKey": false,
  4058. "usingEnvironmentId": false
  4059. },
  4060. "clientSide": false,
  4061. "salt": "77f607e6b5354766ae6dbd701f57b849",
  4062. "trackEvents": false,
  4063. "trackEventsFallthrough": false,
  4064. "debugEventsUntilDate": null,
  4065. "version": 5,
  4066. "deleted": false
  4067. },
  4068. "fflag_fix_back_plt_802_update_is_labeled_20062025_short": {
  4069. "key": "fflag_fix_back_plt_802_update_is_labeled_20062025_short",
  4070. "on": true,
  4071. "prerequisites": [],
  4072. "targets": [],
  4073. "contextTargets": [],
  4074. "rules": [],
  4075. "fallthrough": {
  4076. "variation": 0
  4077. },
  4078. "offVariation": 1,
  4079. "variations": [
  4080. true,
  4081. false
  4082. ],
  4083. "clientSideAvailability": {
  4084. "usingMobileKey": false,
  4085. "usingEnvironmentId": false
  4086. },
  4087. "clientSide": false,
  4088. "salt": "95a86359c8214f2aa0fbf57068fcf1e3",
  4089. "trackEvents": false,
  4090. "trackEventsFallthrough": false,
  4091. "debugEventsUntilDate": null,
  4092. "version": 3,
  4093. "deleted": false
  4094. },
  4095. "fflag_fix_back_plt_804_check_file_extension_11072025_short": {
  4096. "key": "fflag_fix_back_plt_804_check_file_extension_11072025_short",
  4097. "on": true,
  4098. "prerequisites": [],
  4099. "targets": [],
  4100. "contextTargets": [],
  4101. "rules": [],
  4102. "fallthrough": {
  4103. "variation": 0
  4104. },
  4105. "offVariation": 1,
  4106. "variations": [
  4107. true,
  4108. false
  4109. ],
  4110. "clientSideAvailability": {
  4111. "usingMobileKey": false,
  4112. "usingEnvironmentId": false
  4113. },
  4114. "clientSide": false,
  4115. "salt": "382135fcb4df4c33998987ccd60db1e9",
  4116. "trackEvents": false,
  4117. "trackEventsFallthrough": false,
  4118. "debugEventsUntilDate": null,
  4119. "version": 3,
  4120. "deleted": false
  4121. },
  4122. "fflag_fix_back_plt_807_batch_size_26062025_short": {
  4123. "key": "fflag_fix_back_plt_807_batch_size_26062025_short",
  4124. "on": true,
  4125. "prerequisites": [],
  4126. "targets": [],
  4127. "contextTargets": [],
  4128. "rules": [],
  4129. "fallthrough": {
  4130. "variation": 0
  4131. },
  4132. "offVariation": 1,
  4133. "variations": [
  4134. true,
  4135. false
  4136. ],
  4137. "clientSideAvailability": {
  4138. "usingMobileKey": false,
  4139. "usingEnvironmentId": false
  4140. },
  4141. "clientSide": false,
  4142. "salt": "5ae4ce8fdf2d40a8869ee2736fd8583e",
  4143. "trackEvents": false,
  4144. "trackEventsFallthrough": false,
  4145. "debugEventsUntilDate": null,
  4146. "version": 3,
  4147. "deleted": false
  4148. },
  4149. "fflag_fix_back_plt_811_finished_task_number_01072025_short": {
  4150. "key": "fflag_fix_back_plt_811_finished_task_number_01072025_short",
  4151. "on": true,
  4152. "prerequisites": [],
  4153. "targets": [],
  4154. "contextTargets": [],
  4155. "rules": [],
  4156. "fallthrough": {
  4157. "variation": 0
  4158. },
  4159. "offVariation": 1,
  4160. "variations": [
  4161. true,
  4162. false
  4163. ],
  4164. "clientSideAvailability": {
  4165. "usingMobileKey": false,
  4166. "usingEnvironmentId": false
  4167. },
  4168. "clientSide": false,
  4169. "salt": "7f13c327ad9e4ba9819c9a843b99ed4c",
  4170. "trackEvents": false,
  4171. "trackEventsFallthrough": false,
  4172. "debugEventsUntilDate": null,
  4173. "version": 3,
  4174. "deleted": false
  4175. },
  4176. "fflag_fix_back_plt_816_recalculate_stats_batch_15072025_short": {
  4177. "key": "fflag_fix_back_plt_816_recalculate_stats_batch_15072025_short",
  4178. "on": true,
  4179. "prerequisites": [],
  4180. "targets": [],
  4181. "contextTargets": [],
  4182. "rules": [],
  4183. "fallthrough": {
  4184. "variation": 0
  4185. },
  4186. "offVariation": 1,
  4187. "variations": [
  4188. true,
  4189. false
  4190. ],
  4191. "clientSideAvailability": {
  4192. "usingMobileKey": false,
  4193. "usingEnvironmentId": false
  4194. },
  4195. "clientSide": false,
  4196. "salt": "24f0f8aa4b714711a38bb0fe9bffd6c5",
  4197. "trackEvents": false,
  4198. "trackEventsFallthrough": false,
  4199. "debugEventsUntilDate": null,
  4200. "version": 3,
  4201. "deleted": false
  4202. },
  4203. "fflag_fix_back_plt_819_per_org_rate_limiter_09072025_short": {
  4204. "key": "fflag_fix_back_plt_819_per_org_rate_limiter_09072025_short",
  4205. "on": true,
  4206. "prerequisites": [],
  4207. "targets": [],
  4208. "contextTargets": [],
  4209. "rules": [],
  4210. "fallthrough": {
  4211. "variation": 0
  4212. },
  4213. "offVariation": 1,
  4214. "variations": [
  4215. true,
  4216. false
  4217. ],
  4218. "clientSideAvailability": {
  4219. "usingMobileKey": false,
  4220. "usingEnvironmentId": false
  4221. },
  4222. "clientSide": false,
  4223. "salt": "151d487f557a4b9982e815afd7cb3af4",
  4224. "trackEvents": false,
  4225. "trackEventsFallthrough": false,
  4226. "debugEventsUntilDate": null,
  4227. "version": 5,
  4228. "deleted": false
  4229. },
  4230. "fflag_fix_back_plt_825_rate_limiter_debug_14072025_short": {
  4231. "key": "fflag_fix_back_plt_825_rate_limiter_debug_14072025_short",
  4232. "on": false,
  4233. "prerequisites": [],
  4234. "targets": [],
  4235. "contextTargets": [],
  4236. "rules": [],
  4237. "fallthrough": {
  4238. "variation": 0
  4239. },
  4240. "offVariation": 1,
  4241. "variations": [
  4242. true,
  4243. false
  4244. ],
  4245. "clientSideAvailability": {
  4246. "usingMobileKey": false,
  4247. "usingEnvironmentId": false
  4248. },
  4249. "clientSide": false,
  4250. "salt": "6c4552af705d4da7b6c4112da50166d6",
  4251. "trackEvents": false,
  4252. "trackEventsFallthrough": false,
  4253. "debugEventsUntilDate": null,
  4254. "version": 2,
  4255. "deleted": false
  4256. },
  4257. "fflag_fix_back_plt_838_reimport_memory_improvement_05082025_short": {
  4258. "key": "fflag_fix_back_plt_838_reimport_memory_improvement_05082025_short",
  4259. "on": true,
  4260. "prerequisites": [],
  4261. "targets": [],
  4262. "contextTargets": [],
  4263. "rules": [],
  4264. "fallthrough": {
  4265. "variation": 0
  4266. },
  4267. "offVariation": 1,
  4268. "variations": [
  4269. true,
  4270. false
  4271. ],
  4272. "clientSideAvailability": {
  4273. "usingMobileKey": false,
  4274. "usingEnvironmentId": false
  4275. },
  4276. "clientSide": false,
  4277. "salt": "656e75d316e84294b3385bc6820f4669",
  4278. "trackEvents": false,
  4279. "trackEventsFallthrough": false,
  4280. "debugEventsUntilDate": null,
  4281. "version": 3,
  4282. "deleted": false
  4283. },
  4284. "fflag_fix_back_plt_840_redis_last_activity_29072025_short": {
  4285. "key": "fflag_fix_back_plt_840_redis_last_activity_29072025_short",
  4286. "on": true,
  4287. "prerequisites": [],
  4288. "targets": [],
  4289. "contextTargets": [],
  4290. "rules": [],
  4291. "fallthrough": {
  4292. "variation": 0
  4293. },
  4294. "offVariation": 1,
  4295. "variations": [
  4296. true,
  4297. false
  4298. ],
  4299. "clientSideAvailability": {
  4300. "usingMobileKey": false,
  4301. "usingEnvironmentId": false
  4302. },
  4303. "clientSide": false,
  4304. "salt": "df3aa47605a6499eadd337996c5338be",
  4305. "trackEvents": false,
  4306. "trackEventsFallthrough": false,
  4307. "debugEventsUntilDate": null,
  4308. "version": 3,
  4309. "deleted": false
  4310. },
  4311. "fflag_fix_back_plt_843_webhook_memory_improvement_12082025_short": {
  4312. "key": "fflag_fix_back_plt_843_webhook_memory_improvement_12082025_short",
  4313. "on": true,
  4314. "prerequisites": [],
  4315. "targets": [],
  4316. "contextTargets": [],
  4317. "rules": [],
  4318. "fallthrough": {
  4319. "variation": 0
  4320. },
  4321. "offVariation": 1,
  4322. "variations": [
  4323. true,
  4324. false
  4325. ],
  4326. "clientSideAvailability": {
  4327. "usingMobileKey": false,
  4328. "usingEnvironmentId": false
  4329. },
  4330. "clientSide": false,
  4331. "salt": "1003398c0b8c454dbfb78f6e9b5845f5",
  4332. "trackEvents": false,
  4333. "trackEventsFallthrough": false,
  4334. "debugEventsUntilDate": null,
  4335. "version": 3,
  4336. "deleted": false
  4337. },
  4338. "fflag_fix_back_plt_863_remove_iterator_27082025_short": {
  4339. "key": "fflag_fix_back_plt_863_remove_iterator_27082025_short",
  4340. "on": true,
  4341. "prerequisites": [],
  4342. "targets": [],
  4343. "contextTargets": [],
  4344. "rules": [],
  4345. "fallthrough": {
  4346. "variation": 0
  4347. },
  4348. "offVariation": 1,
  4349. "variations": [
  4350. true,
  4351. false
  4352. ],
  4353. "clientSideAvailability": {
  4354. "usingMobileKey": false,
  4355. "usingEnvironmentId": false
  4356. },
  4357. "clientSide": false,
  4358. "salt": "bdfb77aefe4b4b01ab8125128c45fdb6",
  4359. "trackEvents": false,
  4360. "trackEventsFallthrough": false,
  4361. "debugEventsUntilDate": null,
  4362. "version": 3,
  4363. "deleted": false
  4364. },
  4365. "fflag_fix_back_plt_870_import_from_storage_batch_28082025_short": {
  4366. "key": "fflag_fix_back_plt_870_import_from_storage_batch_28082025_short",
  4367. "on": true,
  4368. "prerequisites": [],
  4369. "targets": [],
  4370. "contextTargets": [],
  4371. "rules": [],
  4372. "fallthrough": {
  4373. "variation": 0
  4374. },
  4375. "offVariation": 1,
  4376. "variations": [
  4377. true,
  4378. false
  4379. ],
  4380. "clientSideAvailability": {
  4381. "usingMobileKey": false,
  4382. "usingEnvironmentId": false
  4383. },
  4384. "clientSide": false,
  4385. "salt": "1c977d7f8dbf482e9224e89dd287e8e1",
  4386. "trackEvents": false,
  4387. "trackEventsFallthrough": false,
  4388. "debugEventsUntilDate": null,
  4389. "version": 3,
  4390. "deleted": false
  4391. },
  4392. "fflag_fix_back_plt_893_project_list_oom_fix_02102025_short": {
  4393. "key": "fflag_fix_back_plt_893_project_list_oom_fix_02102025_short",
  4394. "on": true,
  4395. "prerequisites": [],
  4396. "targets": [],
  4397. "contextTargets": [],
  4398. "rules": [],
  4399. "fallthrough": {
  4400. "variation": 0
  4401. },
  4402. "offVariation": 1,
  4403. "variations": [
  4404. true,
  4405. false
  4406. ],
  4407. "clientSideAvailability": {
  4408. "usingMobileKey": false,
  4409. "usingEnvironmentId": false
  4410. },
  4411. "clientSide": false,
  4412. "salt": "99caa0953517427cadbadef27a97315c",
  4413. "trackEvents": false,
  4414. "trackEventsFallthrough": false,
  4415. "debugEventsUntilDate": null,
  4416. "version": 3,
  4417. "deleted": false
  4418. },
  4419. "fflag_fix_back_plt_902_async_import_background_oom_fix_22092025_short": {
  4420. "key": "fflag_fix_back_plt_902_async_import_background_oom_fix_22092025_short",
  4421. "on": true,
  4422. "prerequisites": [],
  4423. "targets": [],
  4424. "contextTargets": [],
  4425. "rules": [],
  4426. "fallthrough": {
  4427. "variation": 0
  4428. },
  4429. "offVariation": 1,
  4430. "variations": [
  4431. true,
  4432. false
  4433. ],
  4434. "clientSideAvailability": {
  4435. "usingMobileKey": false,
  4436. "usingEnvironmentId": false
  4437. },
  4438. "clientSide": false,
  4439. "salt": "a90fb7d8cf2048d4ab45ed0b8e7f52fd",
  4440. "trackEvents": false,
  4441. "trackEventsFallthrough": false,
  4442. "debugEventsUntilDate": null,
  4443. "version": 3,
  4444. "deleted": false
  4445. },
  4446. "fflag_fix_back_plt_913_cache_annotator_queue_total_07102025_short": {
  4447. "key": "fflag_fix_back_plt_913_cache_annotator_queue_total_07102025_short",
  4448. "on": true,
  4449. "prerequisites": [],
  4450. "targets": [],
  4451. "contextTargets": [],
  4452. "rules": [],
  4453. "fallthrough": {
  4454. "variation": 0
  4455. },
  4456. "offVariation": 1,
  4457. "variations": [
  4458. true,
  4459. false
  4460. ],
  4461. "clientSideAvailability": {
  4462. "usingMobileKey": false,
  4463. "usingEnvironmentId": false
  4464. },
  4465. "clientSide": false,
  4466. "salt": "6a17a708748344a2b39b2664bde851a3",
  4467. "trackEvents": false,
  4468. "trackEventsFallthrough": false,
  4469. "debugEventsUntilDate": null,
  4470. "version": 3,
  4471. "deleted": false
  4472. },
  4473. "fflag_fix_back_plt_913_cache_finished_task_number_06102025_short": {
  4474. "key": "fflag_fix_back_plt_913_cache_finished_task_number_06102025_short",
  4475. "on": true,
  4476. "prerequisites": [],
  4477. "targets": [],
  4478. "contextTargets": [],
  4479. "rules": [],
  4480. "fallthrough": {
  4481. "variation": 0
  4482. },
  4483. "offVariation": 1,
  4484. "variations": [
  4485. true,
  4486. false
  4487. ],
  4488. "clientSideAvailability": {
  4489. "usingMobileKey": false,
  4490. "usingEnvironmentId": false
  4491. },
  4492. "clientSide": false,
  4493. "salt": "c31a2b219c734a85acfea5103f144fae",
  4494. "trackEvents": false,
  4495. "trackEventsFallthrough": false,
  4496. "debugEventsUntilDate": null,
  4497. "version": 3,
  4498. "deleted": false
  4499. },
  4500. "fflag_fix_back_plt_914_projects_list_cache_sdk_09102025_short": {
  4501. "key": "fflag_fix_back_plt_914_projects_list_cache_sdk_09102025_short",
  4502. "on": true,
  4503. "prerequisites": [],
  4504. "targets": [],
  4505. "contextTargets": [],
  4506. "rules": [],
  4507. "fallthrough": {
  4508. "variation": 0
  4509. },
  4510. "offVariation": 1,
  4511. "variations": [
  4512. true,
  4513. false
  4514. ],
  4515. "clientSideAvailability": {
  4516. "usingMobileKey": false,
  4517. "usingEnvironmentId": false
  4518. },
  4519. "clientSide": false,
  4520. "salt": "482919695c1d4166896badf1d9405427",
  4521. "trackEvents": false,
  4522. "trackEventsFallthrough": false,
  4523. "debugEventsUntilDate": null,
  4524. "version": 3,
  4525. "deleted": false
  4526. },
  4527. "fflag_fix_bros_113_members_user_order_20250816": {
  4528. "key": "fflag_fix_bros_113_members_user_order_20250816",
  4529. "on": false,
  4530. "prerequisites": [],
  4531. "targets": [],
  4532. "contextTargets": [],
  4533. "rules": [],
  4534. "fallthrough": {
  4535. "variation": 0
  4536. },
  4537. "offVariation": 1,
  4538. "variations": [
  4539. true,
  4540. false
  4541. ],
  4542. "clientSideAvailability": {
  4543. "usingMobileKey": false,
  4544. "usingEnvironmentId": false
  4545. },
  4546. "clientSide": false,
  4547. "salt": "05022b8c7b1d4acfa53373ff6fb08129",
  4548. "trackEvents": false,
  4549. "trackEventsFallthrough": false,
  4550. "debugEventsUntilDate": null,
  4551. "version": 2,
  4552. "deleted": false
  4553. },
  4554. "fflag_fix_bros_528_num_tasks_with_annotations_short": {
  4555. "key": "fflag_fix_bros_528_num_tasks_with_annotations_short",
  4556. "on": false,
  4557. "prerequisites": [],
  4558. "targets": [],
  4559. "contextTargets": [],
  4560. "rules": [],
  4561. "fallthrough": {
  4562. "variation": 0
  4563. },
  4564. "offVariation": 1,
  4565. "variations": [
  4566. true,
  4567. false
  4568. ],
  4569. "clientSideAvailability": {
  4570. "usingMobileKey": false,
  4571. "usingEnvironmentId": false
  4572. },
  4573. "clientSide": false,
  4574. "salt": "77ef8b7e1bb242eb8d37bba6630c6bf2",
  4575. "trackEvents": false,
  4576. "trackEventsFallthrough": false,
  4577. "debugEventsUntilDate": null,
  4578. "version": 2,
  4579. "deleted": false
  4580. },
  4581. "fflag_fix_bros_95_drafts_from_other_users": {
  4582. "key": "fflag_fix_bros_95_drafts_from_other_users",
  4583. "on": true,
  4584. "prerequisites": [],
  4585. "targets": [],
  4586. "contextTargets": [],
  4587. "rules": [],
  4588. "fallthrough": {
  4589. "variation": 0
  4590. },
  4591. "offVariation": 1,
  4592. "variations": [
  4593. true,
  4594. false
  4595. ],
  4596. "clientSideAvailability": {
  4597. "usingMobileKey": false,
  4598. "usingEnvironmentId": false
  4599. },
  4600. "clientSide": false,
  4601. "salt": "e14e78e3865a4fa0a4df7030ee14baaf",
  4602. "trackEvents": false,
  4603. "trackEventsFallthrough": false,
  4604. "debugEventsUntilDate": null,
  4605. "version": 3,
  4606. "deleted": false
  4607. },
  4608. "fflag_fix_fit_1082_overlap_use_distinct_annotators": {
  4609. "key": "fflag_fix_fit_1082_overlap_use_distinct_annotators",
  4610. "on": true,
  4611. "prerequisites": [],
  4612. "targets": [],
  4613. "contextTargets": [],
  4614. "rules": [],
  4615. "fallthrough": {
  4616. "variation": 0
  4617. },
  4618. "offVariation": 1,
  4619. "variations": [
  4620. true,
  4621. false
  4622. ],
  4623. "clientSideAvailability": {
  4624. "usingMobileKey": false,
  4625. "usingEnvironmentId": false
  4626. },
  4627. "clientSide": false,
  4628. "salt": "d997d229777d4b7fa74796d017284f7d",
  4629. "trackEvents": false,
  4630. "trackEventsFallthrough": false,
  4631. "debugEventsUntilDate": null,
  4632. "version": 3,
  4633. "deleted": false
  4634. },
  4635. "fflag_fix_front_dev_1284_auto_detect_undo_281022_short": {
  4636. "key": "fflag_fix_front_dev_1284_auto_detect_undo_281022_short",
  4637. "on": true,
  4638. "prerequisites": [],
  4639. "targets": [],
  4640. "contextTargets": [],
  4641. "rules": [],
  4642. "fallthrough": {
  4643. "variation": 0
  4644. },
  4645. "offVariation": 1,
  4646. "variations": [
  4647. true,
  4648. false
  4649. ],
  4650. "clientSideAvailability": {
  4651. "usingMobileKey": true,
  4652. "usingEnvironmentId": false
  4653. },
  4654. "clientSide": false,
  4655. "salt": "ae9a4fcd489640f1985457056b426a4e",
  4656. "trackEvents": false,
  4657. "trackEventsFallthrough": false,
  4658. "debugEventsUntilDate": null,
  4659. "version": 3,
  4660. "deleted": false
  4661. },
  4662. "fflag_fix_front_dev_2918_labeling_filtered_paragraphs_250822_short": {
  4663. "key": "fflag_fix_front_dev_2918_labeling_filtered_paragraphs_250822_short",
  4664. "on": false,
  4665. "prerequisites": [],
  4666. "targets": [],
  4667. "contextTargets": [],
  4668. "rules": [],
  4669. "fallthrough": {
  4670. "variation": 0
  4671. },
  4672. "offVariation": 1,
  4673. "variations": [
  4674. true,
  4675. false
  4676. ],
  4677. "clientSideAvailability": {
  4678. "usingMobileKey": false,
  4679. "usingEnvironmentId": false
  4680. },
  4681. "clientSide": false,
  4682. "salt": "77a3e3714ab54abfbcf476f654783502",
  4683. "trackEvents": false,
  4684. "trackEventsFallthrough": false,
  4685. "debugEventsUntilDate": null,
  4686. "version": 2,
  4687. "deleted": false
  4688. },
  4689. "fflag_fix_front_dev_3377_image_regions_shift_on_resize_280922_short": {
  4690. "key": "fflag_fix_front_dev_3377_image_regions_shift_on_resize_280922_short",
  4691. "on": true,
  4692. "prerequisites": [],
  4693. "targets": [],
  4694. "contextTargets": [],
  4695. "rules": [],
  4696. "fallthrough": {
  4697. "variation": 0
  4698. },
  4699. "offVariation": 1,
  4700. "variations": [
  4701. true,
  4702. false
  4703. ],
  4704. "clientSideAvailability": {
  4705. "usingMobileKey": true,
  4706. "usingEnvironmentId": false
  4707. },
  4708. "clientSide": false,
  4709. "salt": "d3f36f0fca084c568cef2d0ffe92c574",
  4710. "trackEvents": false,
  4711. "trackEventsFallthrough": false,
  4712. "debugEventsUntilDate": null,
  4713. "version": 3,
  4714. "deleted": false
  4715. },
  4716. "fflag_fix_front_dev_3391_interactive_view_all": {
  4717. "key": "fflag_fix_front_dev_3391_interactive_view_all",
  4718. "on": true,
  4719. "prerequisites": [],
  4720. "targets": [],
  4721. "contextTargets": [],
  4722. "rules": [],
  4723. "fallthrough": {
  4724. "variation": 0
  4725. },
  4726. "offVariation": 1,
  4727. "variations": [
  4728. true,
  4729. false
  4730. ],
  4731. "clientSideAvailability": {
  4732. "usingMobileKey": true,
  4733. "usingEnvironmentId": false
  4734. },
  4735. "clientSide": false,
  4736. "salt": "4a8dad5b7a9547b19136f766ff03376e",
  4737. "trackEvents": false,
  4738. "trackEventsFallthrough": false,
  4739. "debugEventsUntilDate": null,
  4740. "version": 4,
  4741. "deleted": false
  4742. },
  4743. "fflag_fix_front_dev_3793_relative_coords_short": {
  4744. "key": "fflag_fix_front_dev_3793_relative_coords_short",
  4745. "on": true,
  4746. "prerequisites": [],
  4747. "targets": [],
  4748. "contextTargets": [],
  4749. "rules": [],
  4750. "fallthrough": {
  4751. "variation": 0
  4752. },
  4753. "offVariation": 1,
  4754. "variations": [
  4755. true,
  4756. false
  4757. ],
  4758. "clientSideAvailability": {
  4759. "usingMobileKey": false,
  4760. "usingEnvironmentId": false
  4761. },
  4762. "clientSide": false,
  4763. "salt": "cf155cb2859f4f21a69cc0c90b0559e6",
  4764. "trackEvents": false,
  4765. "trackEventsFallthrough": false,
  4766. "debugEventsUntilDate": null,
  4767. "version": 6,
  4768. "deleted": false
  4769. },
  4770. "fflag_fix_front_fit_31_synced_media_buffering": {
  4771. "key": "fflag_fix_front_fit_31_synced_media_buffering",
  4772. "on": false,
  4773. "prerequisites": [],
  4774. "targets": [],
  4775. "contextTargets": [],
  4776. "rules": [],
  4777. "fallthrough": {
  4778. "variation": 0
  4779. },
  4780. "offVariation": 1,
  4781. "variations": [
  4782. true,
  4783. false
  4784. ],
  4785. "clientSideAvailability": {
  4786. "usingMobileKey": false,
  4787. "usingEnvironmentId": false
  4788. },
  4789. "clientSide": false,
  4790. "salt": "6b052332b2924b2e8958631884347ba4",
  4791. "trackEvents": false,
  4792. "trackEventsFallthrough": false,
  4793. "debugEventsUntilDate": null,
  4794. "version": 3,
  4795. "deleted": false
  4796. },
  4797. "fflag_fix_front_leap_32_zoom_perf_190923_short": {
  4798. "key": "fflag_fix_front_leap_32_zoom_perf_190923_short",
  4799. "on": true,
  4800. "prerequisites": [],
  4801. "targets": [
  4802. {
  4803. "contextKind": "user",
  4804. "variation": 1,
  4805. "values": [
  4806. "mihajlo@heartex.e2e"
  4807. ]
  4808. }
  4809. ],
  4810. "contextTargets": [
  4811. {
  4812. "contextKind": "user",
  4813. "variation": 1,
  4814. "values": []
  4815. }
  4816. ],
  4817. "rules": [],
  4818. "fallthrough": {
  4819. "variation": 0
  4820. },
  4821. "offVariation": 1,
  4822. "variations": [
  4823. true,
  4824. false
  4825. ],
  4826. "clientSideAvailability": {
  4827. "usingMobileKey": false,
  4828. "usingEnvironmentId": false
  4829. },
  4830. "clientSide": false,
  4831. "salt": "27d9dd66f4474b61b9ac5c0f03582209",
  4832. "trackEvents": false,
  4833. "trackEventsFallthrough": false,
  4834. "debugEventsUntilDate": null,
  4835. "version": 7,
  4836. "deleted": false
  4837. },
  4838. "fflag_fix_front_leap_443_select_annotation_once": {
  4839. "key": "fflag_fix_front_leap_443_select_annotation_once",
  4840. "on": false,
  4841. "prerequisites": [],
  4842. "targets": [],
  4843. "contextTargets": [],
  4844. "rules": [],
  4845. "fallthrough": {
  4846. "variation": 0
  4847. },
  4848. "offVariation": 1,
  4849. "variations": [
  4850. true,
  4851. false
  4852. ],
  4853. "clientSideAvailability": {
  4854. "usingMobileKey": false,
  4855. "usingEnvironmentId": false
  4856. },
  4857. "clientSide": false,
  4858. "salt": "7fa01b9222564e5b9e3c415d48effd01",
  4859. "trackEvents": false,
  4860. "trackEventsFallthrough": false,
  4861. "debugEventsUntilDate": null,
  4862. "version": 3,
  4863. "deleted": false
  4864. },
  4865. "fflag_fix_front_lsdv_4600_lead_time_27072023_short": {
  4866. "key": "fflag_fix_front_lsdv_4600_lead_time_27072023_short",
  4867. "on": true,
  4868. "prerequisites": [],
  4869. "targets": [],
  4870. "contextTargets": [],
  4871. "rules": [],
  4872. "fallthrough": {
  4873. "variation": 1
  4874. },
  4875. "offVariation": 1,
  4876. "variations": [
  4877. true,
  4878. false
  4879. ],
  4880. "clientSideAvailability": {
  4881. "usingMobileKey": false,
  4882. "usingEnvironmentId": false
  4883. },
  4884. "clientSide": false,
  4885. "salt": "c732cda2ecf64b589fe2bdc90208e3ec",
  4886. "trackEvents": false,
  4887. "trackEventsFallthrough": false,
  4888. "debugEventsUntilDate": null,
  4889. "version": 4,
  4890. "deleted": false
  4891. },
  4892. "fflag_fix_front_lsdv_4620_memory_leaks_100723_short": {
  4893. "key": "fflag_fix_front_lsdv_4620_memory_leaks_100723_short",
  4894. "on": true,
  4895. "prerequisites": [],
  4896. "targets": [],
  4897. "contextTargets": [],
  4898. "rules": [],
  4899. "fallthrough": {
  4900. "variation": 0
  4901. },
  4902. "offVariation": 1,
  4903. "variations": [
  4904. true,
  4905. false
  4906. ],
  4907. "clientSideAvailability": {
  4908. "usingMobileKey": false,
  4909. "usingEnvironmentId": false
  4910. },
  4911. "clientSide": false,
  4912. "salt": "991cf0497e2b4505a928709b04218633",
  4913. "trackEvents": false,
  4914. "trackEventsFallthrough": false,
  4915. "debugEventsUntilDate": null,
  4916. "version": 7,
  4917. "deleted": false
  4918. },
  4919. "fflag_fix_front_lsdv_4930_selection_tool_fixes_240423_short": {
  4920. "key": "fflag_fix_front_lsdv_4930_selection_tool_fixes_240423_short",
  4921. "on": true,
  4922. "prerequisites": [],
  4923. "targets": [],
  4924. "contextTargets": [],
  4925. "rules": [],
  4926. "fallthrough": {
  4927. "variation": 0
  4928. },
  4929. "offVariation": 1,
  4930. "variations": [
  4931. true,
  4932. false
  4933. ],
  4934. "clientSideAvailability": {
  4935. "usingMobileKey": false,
  4936. "usingEnvironmentId": false
  4937. },
  4938. "clientSide": false,
  4939. "salt": "ea3270a37cdb42088d980ed1e4014bef",
  4940. "trackEvents": false,
  4941. "trackEventsFallthrough": false,
  4942. "debugEventsUntilDate": null,
  4943. "version": 3,
  4944. "deleted": false
  4945. },
  4946. "fflag_fix_front_lsdv_4998_missed_dynamic_children_030523_short": {
  4947. "key": "fflag_fix_front_lsdv_4998_missed_dynamic_children_030523_short",
  4948. "on": true,
  4949. "prerequisites": [],
  4950. "targets": [],
  4951. "contextTargets": [],
  4952. "rules": [],
  4953. "fallthrough": {
  4954. "variation": 0
  4955. },
  4956. "offVariation": 1,
  4957. "variations": [
  4958. true,
  4959. false
  4960. ],
  4961. "clientSideAvailability": {
  4962. "usingMobileKey": false,
  4963. "usingEnvironmentId": false
  4964. },
  4965. "clientSide": false,
  4966. "salt": "fcec745463d34dafa13c350d9a6e852c",
  4967. "trackEvents": false,
  4968. "trackEventsFallthrough": false,
  4969. "debugEventsUntilDate": null,
  4970. "version": 3,
  4971. "deleted": false
  4972. },
  4973. "fflag_fix_front_optic_1608_improve_video_frame_seek_precision_short": {
  4974. "key": "fflag_fix_front_optic_1608_improve_video_frame_seek_precision_short",
  4975. "on": true,
  4976. "prerequisites": [],
  4977. "targets": [],
  4978. "contextTargets": [],
  4979. "rules": [],
  4980. "fallthrough": {
  4981. "variation": 0
  4982. },
  4983. "offVariation": 1,
  4984. "variations": [
  4985. true,
  4986. false
  4987. ],
  4988. "clientSideAvailability": {
  4989. "usingMobileKey": false,
  4990. "usingEnvironmentId": false
  4991. },
  4992. "clientSide": false,
  4993. "salt": "840ef429000b4d5e9656830ed46692cf",
  4994. "trackEvents": false,
  4995. "trackEventsFallthrough": false,
  4996. "debugEventsUntilDate": null,
  4997. "version": 5,
  4998. "deleted": false
  4999. },
  5000. "fflag_fix_leap_2052_detect_empty_filters_at_next_task_endpoint_short": {
  5001. "key": "fflag_fix_leap_2052_detect_empty_filters_at_next_task_endpoint_short",
  5002. "on": true,
  5003. "prerequisites": [],
  5004. "targets": [],
  5005. "contextTargets": [],
  5006. "rules": [],
  5007. "fallthrough": {
  5008. "variation": 0
  5009. },
  5010. "offVariation": 1,
  5011. "variations": [
  5012. true,
  5013. false
  5014. ],
  5015. "clientSideAvailability": {
  5016. "usingMobileKey": false,
  5017. "usingEnvironmentId": false
  5018. },
  5019. "clientSide": false,
  5020. "salt": "42b74824c185432fb0f4d76c2595480b",
  5021. "trackEvents": false,
  5022. "trackEventsFallthrough": false,
  5023. "debugEventsUntilDate": null,
  5024. "version": 3,
  5025. "deleted": false
  5026. },
  5027. "fflag_fix_leap_246_multi_object_hotkeys_160124_short": {
  5028. "key": "fflag_fix_leap_246_multi_object_hotkeys_160124_short",
  5029. "on": true,
  5030. "prerequisites": [],
  5031. "targets": [],
  5032. "contextTargets": [],
  5033. "rules": [],
  5034. "fallthrough": {
  5035. "variation": 0
  5036. },
  5037. "offVariation": 1,
  5038. "variations": [
  5039. true,
  5040. false
  5041. ],
  5042. "clientSideAvailability": {
  5043. "usingMobileKey": false,
  5044. "usingEnvironmentId": false
  5045. },
  5046. "clientSide": false,
  5047. "salt": "800fcd0d7d4541349fef5f59174d58b5",
  5048. "trackEvents": false,
  5049. "trackEventsFallthrough": false,
  5050. "debugEventsUntilDate": null,
  5051. "version": 3,
  5052. "deleted": false
  5053. },
  5054. "fflag_fix_leap_466_text_sanitization": {
  5055. "key": "fflag_fix_leap_466_text_sanitization",
  5056. "on": true,
  5057. "prerequisites": [],
  5058. "targets": [],
  5059. "contextTargets": [],
  5060. "rules": [],
  5061. "fallthrough": {
  5062. "variation": 0
  5063. },
  5064. "offVariation": 1,
  5065. "variations": [
  5066. true,
  5067. false
  5068. ],
  5069. "clientSideAvailability": {
  5070. "usingMobileKey": false,
  5071. "usingEnvironmentId": false
  5072. },
  5073. "clientSide": false,
  5074. "salt": "224d52df373e4061b517235600063392",
  5075. "trackEvents": false,
  5076. "trackEventsFallthrough": false,
  5077. "debugEventsUntilDate": null,
  5078. "version": 5,
  5079. "deleted": false
  5080. },
  5081. "fflag_fix_optic_1259_lse_projects_read_apis_use_replica_short": {
  5082. "key": "fflag_fix_optic_1259_lse_projects_read_apis_use_replica_short",
  5083. "on": false,
  5084. "prerequisites": [],
  5085. "targets": [],
  5086. "contextTargets": [],
  5087. "rules": [],
  5088. "fallthrough": {
  5089. "variation": 0
  5090. },
  5091. "offVariation": 1,
  5092. "variations": [
  5093. true,
  5094. false
  5095. ],
  5096. "clientSideAvailability": {
  5097. "usingMobileKey": false,
  5098. "usingEnvironmentId": false
  5099. },
  5100. "clientSide": false,
  5101. "salt": "380538fdddcb4899b65e93d8d6e99482",
  5102. "trackEvents": false,
  5103. "trackEventsFallthrough": false,
  5104. "debugEventsUntilDate": null,
  5105. "version": 2,
  5106. "deleted": false
  5107. },
  5108. "fflag_front_dia_1150_ddisco_sneak_preview": {
  5109. "key": "fflag_front_dia_1150_ddisco_sneak_preview",
  5110. "on": false,
  5111. "prerequisites": [],
  5112. "targets": [],
  5113. "contextTargets": [],
  5114. "rules": [],
  5115. "fallthrough": {
  5116. "variation": 0
  5117. },
  5118. "offVariation": 1,
  5119. "variations": [
  5120. true,
  5121. false
  5122. ],
  5123. "clientSideAvailability": {
  5124. "usingMobileKey": false,
  5125. "usingEnvironmentId": false
  5126. },
  5127. "clientSide": false,
  5128. "salt": "6965c0995db048378c3513804fd02682",
  5129. "trackEvents": false,
  5130. "trackEventsFallthrough": false,
  5131. "debugEventsUntilDate": null,
  5132. "version": 3,
  5133. "deleted": false
  5134. },
  5135. "fflag_optic_all_optic_1938_storage_proxy": {
  5136. "key": "fflag_optic_all_optic_1938_storage_proxy",
  5137. "on": true,
  5138. "prerequisites": [],
  5139. "targets": [],
  5140. "contextTargets": [],
  5141. "rules": [],
  5142. "fallthrough": {
  5143. "variation": 0
  5144. },
  5145. "offVariation": 1,
  5146. "variations": [
  5147. true,
  5148. false
  5149. ],
  5150. "clientSideAvailability": {
  5151. "usingMobileKey": false,
  5152. "usingEnvironmentId": false
  5153. },
  5154. "clientSide": false,
  5155. "salt": "1e0f07f7fc144f2dbce9df4460434415",
  5156. "trackEvents": false,
  5157. "trackEventsFallthrough": false,
  5158. "debugEventsUntilDate": null,
  5159. "version": 8,
  5160. "deleted": false
  5161. },
  5162. "fflag_root_13_annotation_results_filtering": {
  5163. "key": "fflag_root_13_annotation_results_filtering",
  5164. "on": true,
  5165. "prerequisites": [],
  5166. "targets": [],
  5167. "contextTargets": [],
  5168. "rules": [],
  5169. "fallthrough": {
  5170. "variation": 0
  5171. },
  5172. "offVariation": 1,
  5173. "variations": [
  5174. true,
  5175. false
  5176. ],
  5177. "clientSideAvailability": {
  5178. "usingMobileKey": false,
  5179. "usingEnvironmentId": false
  5180. },
  5181. "clientSide": false,
  5182. "salt": "4ab31fe3b28f4abd90ac0558b7d41584",
  5183. "trackEvents": false,
  5184. "trackEventsFallthrough": false,
  5185. "debugEventsUntilDate": null,
  5186. "version": 3,
  5187. "deleted": false
  5188. },
  5189. "fflag_root_212_reduce_importstoragelink_counts": {
  5190. "key": "fflag_root_212_reduce_importstoragelink_counts",
  5191. "on": true,
  5192. "prerequisites": [],
  5193. "targets": [],
  5194. "contextTargets": [],
  5195. "rules": [],
  5196. "fallthrough": {
  5197. "variation": 0
  5198. },
  5199. "offVariation": 1,
  5200. "variations": [
  5201. true,
  5202. false
  5203. ],
  5204. "clientSideAvailability": {
  5205. "usingMobileKey": false,
  5206. "usingEnvironmentId": false
  5207. },
  5208. "clientSide": false,
  5209. "salt": "47dce548c195496f8d1bd7bafd1cec23",
  5210. "trackEvents": false,
  5211. "trackEventsFallthrough": false,
  5212. "debugEventsUntilDate": null,
  5213. "version": 3,
  5214. "deleted": false
  5215. },
  5216. "fflag_root_223_optimize_delete_predictions": {
  5217. "key": "fflag_root_223_optimize_delete_predictions",
  5218. "on": true,
  5219. "prerequisites": [],
  5220. "targets": [],
  5221. "contextTargets": [],
  5222. "rules": [],
  5223. "fallthrough": {
  5224. "variation": 0
  5225. },
  5226. "offVariation": 1,
  5227. "variations": [
  5228. true,
  5229. false
  5230. ],
  5231. "clientSideAvailability": {
  5232. "usingMobileKey": false,
  5233. "usingEnvironmentId": false
  5234. },
  5235. "clientSide": false,
  5236. "salt": "066b4d5b0746449c8f5a2e1a9a465022",
  5237. "trackEvents": false,
  5238. "trackEventsFallthrough": false,
  5239. "debugEventsUntilDate": null,
  5240. "version": 3,
  5241. "deleted": false
  5242. },
  5243. "fflag_root_43_prediction_results_filter": {
  5244. "key": "fflag_root_43_prediction_results_filter",
  5245. "on": true,
  5246. "prerequisites": [],
  5247. "targets": [],
  5248. "contextTargets": [],
  5249. "rules": [],
  5250. "fallthrough": {
  5251. "variation": 0
  5252. },
  5253. "offVariation": 1,
  5254. "variations": [
  5255. true,
  5256. false
  5257. ],
  5258. "clientSideAvailability": {
  5259. "usingMobileKey": false,
  5260. "usingEnvironmentId": false
  5261. },
  5262. "clientSide": false,
  5263. "salt": "3c7e43db933e4079b7e23affb0f64a37",
  5264. "trackEvents": false,
  5265. "trackEventsFallthrough": false,
  5266. "debugEventsUntilDate": null,
  5267. "version": 3,
  5268. "deleted": false
  5269. },
  5270. "fflag_root_45_better_user_filter": {
  5271. "key": "fflag_root_45_better_user_filter",
  5272. "on": false,
  5273. "prerequisites": [],
  5274. "targets": [],
  5275. "contextTargets": [],
  5276. "rules": [],
  5277. "fallthrough": {
  5278. "variation": 0
  5279. },
  5280. "offVariation": 1,
  5281. "variations": [
  5282. true,
  5283. false
  5284. ],
  5285. "clientSideAvailability": {
  5286. "usingMobileKey": false,
  5287. "usingEnvironmentId": false
  5288. },
  5289. "clientSide": false,
  5290. "salt": "90a29371fb66450f8789bee910cf4e68",
  5291. "trackEvents": false,
  5292. "trackEventsFallthrough": false,
  5293. "debugEventsUntilDate": null,
  5294. "version": 2,
  5295. "deleted": false
  5296. },
  5297. "fflag_utc_428_consensus_control_tag_agreement": {
  5298. "key": "fflag_utc_428_consensus_control_tag_agreement",
  5299. "on": false,
  5300. "prerequisites": [],
  5301. "targets": [],
  5302. "contextTargets": [],
  5303. "rules": [],
  5304. "fallthrough": {
  5305. "variation": 0
  5306. },
  5307. "offVariation": 1,
  5308. "variations": [
  5309. true,
  5310. false
  5311. ],
  5312. "clientSideAvailability": {
  5313. "usingMobileKey": false,
  5314. "usingEnvironmentId": false
  5315. },
  5316. "clientSide": false,
  5317. "salt": "18a108bc0ad847afa56fbf59a57de1fb",
  5318. "trackEvents": false,
  5319. "trackEventsFallthrough": false,
  5320. "debugEventsUntilDate": null,
  5321. "version": 2,
  5322. "deleted": false
  5323. },
  5324. "fix_backend_dev_3134_exclude_deactivated_users": {
  5325. "key": "fix_backend_dev_3134_exclude_deactivated_users",
  5326. "on": false,
  5327. "prerequisites": [],
  5328. "targets": [],
  5329. "contextTargets": [],
  5330. "rules": [],
  5331. "fallthrough": {
  5332. "variation": 0
  5333. },
  5334. "offVariation": 1,
  5335. "variations": [
  5336. true,
  5337. false
  5338. ],
  5339. "clientSideAvailability": {
  5340. "usingMobileKey": true,
  5341. "usingEnvironmentId": false
  5342. },
  5343. "clientSide": false,
  5344. "salt": "fabfc44d04c6452aa4e1dee24b55af80",
  5345. "trackEvents": false,
  5346. "trackEventsFallthrough": false,
  5347. "debugEventsUntilDate": null,
  5348. "version": 4,
  5349. "deleted": false
  5350. }
  5351. }
  5352. }