From 0f0e2866be35e89091f0f92c87f21adc363cf3ca Mon Sep 17 00:00:00 2001 From: Bryce Date: Wed, 5 Nov 2025 13:46:43 -0800 Subject: [PATCH] Actually looking up data entry --- app.py | 40 +- examples/client.json | 66 +- examples/collection.json | 292 + examples/document_search.json | 49 + examples/folder.json | 64 + examples/folder_children.json | 233 + examples/forms__complaintInfo.json | 292 + examples/forms__newFileReview.json | 162 + examples/project.json | 91 + examples/project_contacts.json | 229 +- examples/project_list.json | 2576 +++- examples/project_type.json | 50 + examples/project_type_sections.json | 17316 ++++++++++++++++++++++++++ generate_sample.py | 167 +- templates/dashboard.html | 273 +- 15 files changed, 21320 insertions(+), 580 deletions(-) create mode 100644 examples/collection.json create mode 100644 examples/document_search.json create mode 100644 examples/folder.json create mode 100644 examples/folder_children.json create mode 100644 examples/forms__complaintInfo.json create mode 100644 examples/forms__newFileReview.json create mode 100644 examples/project.json create mode 100644 examples/project_type.json create mode 100644 examples/project_type_sections.json diff --git a/app.py b/app.py index 50186fc..b7a1f08 100644 --- a/app.py +++ b/app.py @@ -74,13 +74,17 @@ def fetch_all_projects(): # List projects (all pages) projects = list_all_projects(bearer) + # todo, only 10 projects + projects = projects[:10] # Fetch details for each detailed_rows = [] for p in projects: pid = (p.get("projectId") or {}).get("native") c = fetch_client(bearer, (p.get("clientId") or {}).get("native")) + print("fetched client") cs = fetch_contacts(bearer, pid) + print("fetched contacts") if pid is None: continue @@ -89,9 +93,17 @@ def fetch_all_projects(): except Exception as e: print(f"[WARN] detail fetch failed for {pid}: {e}") detail = {} + from pprint import pprint + defendant_one = next((c.get('orgContact', {}) for c in cs if "Defendant" in c.get('orgContact', {}).get('personTypes', [])), {}) + new_file_review = fetch_form(bearer, pid, "newFileReview") or {} + dates_and_deadlines = fetch_form(bearer, pid, "datesAndDeadlines") or {} row = { "client": c.get("firstName"), "matter_description": p.get("projectName"), + "defendant_1": defendant_one.get('fullName', 'Unknown'), + "matter_open": p.get("createdDate"), + "notice_type": new_file_review.get("noticeType", '') or '', + "case_number": dates_and_deadlines.get('caseNumber', '') or '', "contacts": cs, "ProjectEmailAddress": p.get("projectEmailAddress"), "Number": p.get("number"), @@ -208,7 +220,9 @@ def get_filevine_bearer(): resp = requests.post(url, data=data, headers=headers, timeout=30) resp.raise_for_status() js = resp.json() - return js.get("access_token") + token = js.get("access_token") + print(f"Got bearer {token}") + return token def list_all_projects(bearer: str): @@ -222,7 +236,10 @@ def list_all_projects(bearer: str): results = [] last_id = None tries = 0 - while True: + # TODO we probably need to sync the data with fierbase + while len(results) < 200: + cnt = len(results) + print(f"list try {tries}, last_id {last_id}, count {cnt}") tries += 1 url = base params = {} @@ -281,6 +298,25 @@ def fetch_contacts(bearer: str, project_id_native: int): return r.json().get("items") +def fetch_form(bearer: str, project_id_native: int, form: str): + try: + url = f"https://api.filevineapp.com/fv-app/v2/Projects/{project_id_native}/Forms/{form}" + headers = { + "Accept": "application/json", + "Authorization": f"Bearer {bearer}", + "x-fv-orgid": str(FV_ORG_ID), + "x-fv-userid": str(FV_USER_ID), + } + r = requests.get(url, headers=headers, timeout=30) + r.raise_for_status() + return r.json() + except Exception as e: + print(e) + return {} + + + + @app.route("/dashboard") diff --git a/examples/client.json b/examples/client.json index c7d6e4f..e03b2f6 100644 --- a/examples/client.json +++ b/examples/client.json @@ -1,9 +1,9 @@ { "sample_request": { - "url": "https://api.filevineapp.com/fv-app/v2/contacts/43125866", + "url": "https://api.filevineapp.com/fv-app/v2/contacts/43407853", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjExNzg4NzUsImV4cCI6MTc2MTE4MDY3NSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MTE3ODg3NSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJmUkEwbHRoSnp5aTBBWU9ZS1F4WGVlckczUHc1MXEyMmh4cTlzbk4zL2V3PSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMkNENzYzNUFGNkU5RjQ0RjY2NzI1RTkyREY3RUI2NDciLCJpYXQiOjE3NjExNzg4NzUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.E-TzpOEg6TO0ab65oq_rIambdugvK435q-yR1miardzwt5mP1Bz4aiLCurnx3FmkxhMSTnIOC8jzX73mG_lZL22FFctsB5EWt7WrUScqVAmTtG4hfPQOp4BM007nbXiKWwEXejBhyV8bsxkRkjv1gj6OlaCnvLkiDCgiD93RWpo6LSMi7nry1bNUXI2eN-0yXXrvDEiwvfY2meO1lvVwEUktLPy45_ehZ6IOc6ZIDw3zMLkqZjj046JRCsT9L8w-oNHq5xerRC4RcssIklsn9KH7M_oDrDtW20gLcTJ0mubk_HcTc1oQh-loe89UHFg-tiB63LHng9Vj3JnyZPvEjg", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTIsImV4cCI6MTc2MjM3OTkxMiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMiwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMjhFREY5RERBMUVDNTZBMEJFRTU5NjQwNTFCMUM2RDIiLCJpYXQiOjE3NjIzNzgxMTIsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.slTr9_NHc2FnGx9cTFDY-Ejs2kTLJbCGFvR0S_7s5_sh8vtGRkBITnmg6Asgj2L-Vxb6iyXv97d0U87P4XbHxZ-ghKLPlki3uje0V6zNkDT_l0pj54U1L4My7AAMn1E6afm3ryKvMjeVjOHbszfb6mC0qch0NCsDajEQlN_NrgMaVkopO16OFOAK4h4x_dJ3Bd-Ud8DKxYdaDSjWUe6ABCFJeANi9qexvZSecdKeD7WcxcIW4GVn_O4ZCbODp72acUTH5ID_OK6Zky-gzL14gDJbjr_vKplQwb200RnHfLPe2V6PRjKJppnIcHin3oRyQnJWiAl80D43kFaQ46F8WQ", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -14,49 +14,63 @@ "status_code": 200, "json": { "personId": { - "native": 43125866, + "native": 43407853, "partner": null }, - "firstName": "Twin Pines Apartments (Twin Pine LLC)", + "firstName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)", "middleName": "", "lastName": "", "isSingleName": true, - "fullName": "Twin Pines Apartments (Twin Pine LLC)", - "pictureUrl": "/images/Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png", - "pictureKey": "Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png", + "fullName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)", + "pictureUrl": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", + "pictureKey": "Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", "fromCompany": "", "personTypes": [ "Client/ Property" ], - "uniqueId": "65333863-f119-4e10-9473-992b99fbac16", + "uniqueId": "f76a984c-ba2a-49d7-9097-07886608903b", "searchNames": [ - "twin", - "pines", + "museum", + "park", "apartments", - "(twin", - "pine", + "(museum", + "property", "llc)", - "twin pines apartments (twin pine llc)" + "museum park apartments (museum park property llc)" ], "phones": [], "emails": [], - "addresses": [], + "addresses": [ + { + "addressId": { + "native": 56496773, + "partner": null + }, + "line1": "465 West San Carlos Street", + "line2": "", + "city": "San Jose", + "state": "CA", + "postalCode": "95110", + "fullAddress": "465 West San Carlos Street, San Jose, CA 95110", + "links": {} + } + ], "prefix": "", "hashtags": [], "suffix": "", "jobTitle": "", "department": "", - "modifiedDate": "2025-10-22T15:06:31.993Z", + "modifiedDate": "2025-11-04T20:20:09.89Z", "links": { - "self": "/contacts/43125866", - "projects": "/contacts/43125866/projects", - "phones": "/contacts/43125866/phones", - "emailAddresses": "/contacts/43125866/emailAddresses", - "addresses": "/contacts/43125866/addresses" + "self": "/contacts/43407853", + "projects": "/contacts/43407853/projects", + "phones": "/contacts/43407853/phones", + "emailAddresses": "/contacts/43407853/emailAddresses", + "addresses": "/contacts/43407853/addresses" } }, "headers": { - "Date": "Thu, 23 Oct 2025 00:21:16 GMT", + "Date": "Wed, 05 Nov 2025 21:28:32 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -67,18 +81,18 @@ "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", - "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", - "x-filevine-api-version": "3.3426.3.0", - "x-fv-correlation-id": "0a3acd7278c6486796d853ddf232e48f", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "a56eef69d48446789013d5786fb15bde", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "0a3acd7278c6486796d853ddf232e48f", + "x-fv-gateway-correlation-id": "a56eef69d48446789013d5786fb15bde", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "992d12c6c95790db-SEA", + "CF-RAY": "999f7100ab70c4cb-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/collection.json b/examples/collection.json new file mode 100644 index 0000000..13cf634 --- /dev/null +++ b/examples/collection.json @@ -0,0 +1,292 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/complaintInfo", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzg0NzYsImV4cCI6MTc2MjM4MDI3NiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODQ3NiwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRUI1NTdCRjkzN0M3NUFGMkFBRTZBRTJGRjRDREM5ODQiLCJpYXQiOjE3NjIzNzg0NzYsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.Q9um_ZJ6G-jNYcS1MYOk362k_8Oghj7OHMgTK-A03xXbKDJgPOk7BKJh8Nohp-CjhLTPLxrtXkK0ZuH6iSm7ZhCDvFdJJbrsuick2l5y2UhXS7Cja4axbX7sOuk89C0BvBJRiyn8lW7SLe8uUUPRhUBN23kBhptDx-bOF2Rj9yDeskqRtWTR57mNv_alRln73qyCEqghJHwBSrbnDxKvRPQ_-hAVE3WuXuf-fMadWSpv7rUs3SuqyX7iKbBPxKiuNXI5UbmMD9bL_E-G6u5XFWie2M1DmLskr2wBupHaRmK7Qq9QPGlCklGE-IYNDuRjQ-rBP5FBS1c3hGBYHdZRtA", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "complaintVerificationBy": "Agent for Plaintiff", + "complaintVerificationContact": { + "id": 43407877, + "contactNumber": "0", + "orgID": 9227, + "firstName": "Samantha", + "middleName": null, + "lastName": "Norton", + "fullname": "Samantha Norton", + "isSingleName": false, + "fromCompany": null, + "primaryLanguage": null, + "orgMetaVersionID": 0, + "jobTitle": null, + "department": null, + "prefix": null, + "suffix": null, + "fullnameExtended": "Samantha Norton", + "nickname": null, + "initials": "SN", + "initialsFirstLast": "SN", + "personTypes": [ + { + "id": 107183, + "name": "Property Manager", + "badgeColorClass": null, + "isDeprecated": false, + "includeBirthdateField": false, + "globalSourceGuid": "64474682-4334-41ca-85e9-bdb0fc4ffac0" + } + ], + "tags": [], + "isArchived": false, + "createdDate": "2025-11-04T20:22:31.887Z", + "modifiedDate": "2025-11-04T20:26:41.3Z", + "phones": [ + { + "id": 74943071, + "number": "(408) 712-0299", + "extension": null, + "rawNumber": "4087120299", + "isSmsable": false, + "isFaxable": false, + "label": null, + "phoneLabel": null, + "notes": null + } + ], + "emails": [ + { + "id": 19359086, + "address": "michele@toddrothbardlaw.com", + "emailLabel": null, + "label": null, + "notes": null + } + ], + "addresses": [ + { + "id": 56496788, + "line1": "465 West San Carlos Street", + "line2": "", + "line3": null, + "city": "San Jose", + "state": "CA", + "zip": "95110", + "country": null, + "label": null, + "addressLabel": null, + "notes": null, + "fullAddress": "465 West San Carlos Street, San Jose, CA 95110" + } + ], + "pictureUrl": "/images/Default86c987b2-9505-4182-9486-48c7fb607693.png", + "pictureKey": "Default86c987b2-9505-4182-9486-48c7fb607693.png", + "birthDate": null, + "deathDate": null, + "isDeceased": null, + "ageInYears": null, + "uniqueID": "ea8be4a2-e226-452f-80ae-da25efb05b62", + "abbreviatedName": null, + "ssn": null, + "notes": null, + "specialty": null, + "gender": null, + "language": null, + "maritalStatus": null, + "isTextingPermitted": null, + "remarket": null, + "driverLicenseNumber": null, + "isTypeClient": null, + "isTypeAdjuster": null, + "isTypeDefendant": null, + "isTypePlaintiff": null, + "isTypeAttorney": null, + "isTypeFirm": null, + "isTypeExpert": null, + "isTypeMedicalProvider": null, + "isTypeInvolvedParty": null, + "isTypeJudge": null, + "isTypeCourt": null, + "isTypeInsuranceCompany": null, + "salutation": null, + "barNumber": null, + "fiduciary": null, + "isMinor": null, + "searchNames": [ + "samantha", + "norton", + "samantha norton" + ] + }, + "totalDamagesSought": "over $10,000.00", + "amendedComplaintRequired": null, + "reasonForAmendment": null, + "documentsAmended": null, + "amendmentNumber": null, + "dateAmendmentFiled": null, + "prepareComplaintDocs": null, + "migratedDamages": null, + "cMPPreppedAndApprovedBy": "Michele Le", + "noticeExhibit": "Exhibit A", + "prepareSummonsDoc": { + "id": 492895445, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Summons (SUM-130)(16) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:09.613Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7143, + "reportFusionName": "CMP - Summons (SUM-130)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "937c814b/Ocr-568bd51cd7f04c0ca7a0d3254c86b139.Pdf" + }, + "prepareCivilCaseCoverSheetDocOLD": null, + "prepareUD101DocOLD": null, + "prepareUD120OLD": null, + "noticeType": null, + "prepareComplaintDoc": null, + "premisesCounty": null, + "prepareCivilCaseCoverSheet": { + "id": 492895003, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Civil Case Coversheet (CM-010)(7) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:03.95Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7163, + "reportFusionName": "CMP - Civil Case Coversheet (CM-010)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "fac37db0/Ocr-9d8b538947e24a6cb9b97d900fa22ef3.Pdf" + }, + "prepareUD101": { + "id": 492895477, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Supp Allegations (UD-101)(9) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:17.38Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7166, + "reportFusionName": "CMP - Supp Allegations (UD-101)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "ac764364/Ocr-ae867596cf7a4c10ae251c4dc2e7b2b3.Pdf" + }, + "prepareUD120": { + "id": 492895454, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Verification of RA (UD-120)(5) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:10.737Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7167, + "reportFusionName": "CMP - Verification of RA (UD-120)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "92b65ed6/Ocr-965f89bc3e4340539992c465d31e940a.Pdf" + }, + "civilJurisdiction": "Limited", + "prepareNonStip": null, + "complaintSubmittedToCourtEmail": null, + "complaintSubmittedToCourtSanJoaquin Email": null, + "bILLING": null, + "addFeeForResidentialNonpayment": null, + "typeOfTenancy": null, + "uDBaseFeeResidentialNonpa": null, + "addFeeForCommercialNonpayment": null, + "uDBaseFeeCommercialNonpay": null, + "billForCourtFilingFee": null, + "costsInitialCaseFilingFee": null, + "billForServiceOfSummons": null, + "costsServiceOfSummons": null, + "billForUnlimitedEFiling": null, + "costsUnlimitedEFiling": null, + "pIACostsInfoOnlyNotCalc": null, + "billBaseFeeForCase": null, + "useAdditionalPlaintiffsAttach": null, + "useAdditionalDefendantsAttachment": null, + "filedCaseReceivedFromCourt": null, + "checkComplaintTaskList": null, + "prepareAdditionalDefendantsSumAttach": null, + "prepareAdditionalPlaintiffsSumAttach": null, + "selectCountiesThatRequireUD101UD120": "Santa Clara UD-101, UD-120", + "selectCountiesThatRequireAddlFormWCmp": null, + "prepareNonStipToCommissioner": null + }, + "xxx": "b'{\"complaintVerificationBy\":\"Agent for Plaintiff\",\"complaintVerificationContact\":{\"id\":43407877,\"contactNumber\":\"0\",\"orgID\":9227,\"firstName\":\"Samantha\",\"middleName\":null,\"lastName\":\"Norton\",\"fullname\":\"Samantha Norton\",\"isSingleName\":false,\"fromCompany\":null,\"primaryLanguage\":null,\"orgMetaVersionID\":0,\"jobTitle\":null,\"department\":null,\"prefix\":null,\"suffix\":null,\"fullnameExtended\":\"Samantha Norton\",\"nickname\":null,\"initials\":\"SN\",\"initialsFirstLast\":\"SN\",\"personTypes\":[{\"id\":107183,\"name\":\"Property Manager\",\"badgeColorClass\":null,\"isDeprecated\":false,\"includeBirthdateField\":false,\"globalSourceGuid\":\"64474682-4334-41ca-85e9-bdb0fc4ffac0\"}],\"tags\":[],\"isArchived\":false,\"createdDate\":\"2025-11-04T20:22:31.887Z\",\"modifiedDate\":\"2025-11-04T20:26:41.3Z\",\"phones\":[{\"id\":74943071,\"number\":\"(408) 712-0299\",\"extension\":null,\"rawNumber\":\"4087120299\",\"isSmsable\":false,\"isFaxable\":false,\"label\":null,\"phoneLabel\":null,\"notes\":null}],\"emails\":[{\"id\":19359086,\"address\":\"michele@toddrothbardlaw.com\",\"emailLabel\":null,\"label\":null,\"notes\":null}],\"addresses\":[{\"id\":56496788,\"line1\":\"465 West San Carlos Street\",\"line2\":\"\",\"line3\":null,\"city\":\"San Jose\",\"state\":\"CA\",\"zip\":\"95110\",\"country\":null,\"label\":null,\"addressLabel\":null,\"notes\":null,\"fullAddress\":\"465 West San Carlos Street, San Jose, CA 95110\"}],\"pictureUrl\":\"/images/Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"pictureKey\":\"Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"birthDate\":null,\"deathDate\":null,\"isDeceased\":null,\"ageInYears\":null,\"uniqueID\":\"ea8be4a2-e226-452f-80ae-da25efb05b62\",\"abbreviatedName\":null,\"ssn\":null,\"notes\":null,\"specialty\":null,\"gender\":null,\"language\":null,\"maritalStatus\":null,\"isTextingPermitted\":null,\"remarket\":null,\"driverLicenseNumber\":null,\"isTypeClient\":null,\"isTypeAdjuster\":null,\"isTypeDefendant\":null,\"isTypePlaintiff\":null,\"isTypeAttorney\":null,\"isTypeFirm\":null,\"isTypeExpert\":null,\"isTypeMedicalProvider\":null,\"isTypeInvolvedParty\":null,\"isTypeJudge\":null,\"isTypeCourt\":null,\"isTypeInsuranceCompany\":null,\"salutation\":null,\"barNumber\":null,\"fiduciary\":null,\"isMinor\":null,\"searchNames\":[\"samantha\",\"norton\",\"samantha norton\"]},\"totalDamagesSought\":\"over $10,000.00\",\"amendedComplaintRequired\":null,\"reasonForAmendment\":null,\"documentsAmended\":null,\"amendmentNumber\":null,\"dateAmendmentFiled\":null,\"prepareComplaintDocs\":null,\"migratedDamages\":null,\"cMPPreppedAndApprovedBy\":\"Michele Le\",\"noticeExhibit\":\"Exhibit A\",\"prepareSummonsDoc\":{\"id\":492895445,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Summons (SUM-130)(16) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:09.613Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7143,\"reportFusionName\":\"CMP - Summons (SUM-130)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"937c814b/Ocr-568bd51cd7f04c0ca7a0d3254c86b139.Pdf\"},\"prepareCivilCaseCoverSheetDocOLD\":null,\"prepareUD101DocOLD\":null,\"prepareUD120OLD\":null,\"noticeType\":null,\"prepareComplaintDoc\":null,\"premisesCounty\":null,\"prepareCivilCaseCoverSheet\":{\"id\":492895003,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Civil Case Coversheet (CM-010)(7) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:03.95Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7163,\"reportFusionName\":\"CMP - Civil Case Coversheet (CM-010)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"fac37db0/Ocr-9d8b538947e24a6cb9b97d900fa22ef3.Pdf\"},\"prepareUD101\":{\"id\":492895477,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Supp Allegations (UD-101)(9) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:17.38Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7166,\"reportFusionName\":\"CMP - Supp Allegations (UD-101)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"ac764364/Ocr-ae867596cf7a4c10ae251c4dc2e7b2b3.Pdf\"},\"prepareUD120\":{\"id\":492895454,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Verification of RA (UD-120)(5) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:10.737Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7167,\"reportFusionName\":\"CMP - Verification of RA (UD-120)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"92b65ed6/Ocr-965f89bc3e4340539992c465d31e940a.Pdf\"},\"civilJurisdiction\":\"Limited\",\"prepareNonStip\":null,\"complaintSubmittedToCourtEmail\":null,\"complaintSubmittedToCourtSanJoaquin Email\":null,\"bILLING\":null,\"addFeeForResidentialNonpayment\":null,\"typeOfTenancy\":null,\"uDBaseFeeResidentialNonpa\":null,\"addFeeForCommercialNonpayment\":null,\"uDBaseFeeCommercialNonpay\":null,\"billForCourtFilingFee\":null,\"costsInitialCaseFilingFee\":null,\"billForServiceOfSummons\":null,\"costsServiceOfSummons\":null,\"billForUnlimitedEFiling\":null,\"costsUnlimitedEFiling\":null,\"pIACostsInfoOnlyNotCalc\":null,\"billBaseFeeForCase\":null,\"useAdditionalPlaintiffsAttach\":null,\"useAdditionalDefendantsAttachment\":null,\"filedCaseReceivedFromCourt\":null,\"checkComplaintTaskList\":null,\"prepareAdditionalDefendantsSumAttach\":null,\"prepareAdditionalPlaintiffsSumAttach\":null,\"selectCountiesThatRequireUD101UD120\":\"Santa Clara UD-101, UD-120\",\"selectCountiesThatRequireAddlFormWCmp\":null,\"prepareNonStipToCommissioner\":null}'", + "headers": { + "Date": "Wed, 05 Nov 2025 21:34:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "74481f4da9144489a0faa8e9049fbce2", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "74481f4da9144489a0faa8e9049fbce2", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f79e6183ad466-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/document_search.json b/examples/document_search.json new file mode 100644 index 0000000..82762d0 --- /dev/null +++ b/examples/document_search.json @@ -0,0 +1,49 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/DocumentSearch?projectId=15974631&searchTerm=notice", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTMsImV4cCI6MTc2MjM3OTkxMywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMkE3MzE1QUE2QkIxRTJCN0NDNjc0REJGNDY5RkI1NkIiLCJpYXQiOjE3NjIzNzgxMTMsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.FCu3LHfKJloHmVj8pDMK4U1rBR2pxhWXGpcjaBot7UNvDRohsSFOULSzvQJYLgEnD1zn6MyqcXOiDjh3H6dv-jEarswPn8DY9rP7e_U7tTLjHmmG-sarROLC7EVDtZMk7o2sMUpkAdcICy0lNKdhoZ-6LjO-y0zblfZVrXjFWKJO5WyyxkEkv436iT5PZ3CIkB_S1wdB8oTUZL4bYPydyu_jV0lwl-2wHuVGNAKPMgjvbS4qqxqpj9Xy_G1zVQ8OJOyEGVT7-8SBd9aO0xkR4nZax5zR55Wnet_VFTFIah_0I2-UCBQhuMkLtmNOaBXJu-0myEqRU3W7WCqO8cuhaw", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "count": 0, + "limit": 50, + "hasMore": false, + "items": [], + "links": {} + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "52e9634a5a8d4fdab9cff5cbecd90eb9", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "52e9634a5a8d4fdab9cff5cbecd90eb9", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f710c0cfbb997-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/folder.json b/examples/folder.json new file mode 100644 index 0000000..f8fdcd2 --- /dev/null +++ b/examples/folder.json @@ -0,0 +1,64 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/folders/138954131", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTIsImV4cCI6MTc2MjM3OTkxMiwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMiwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiM0I1Q0E0Qzg1RkE2RDUxODU3NDEyNTEwNTNCMzc3QjQiLCJpYXQiOjE3NjIzNzgxMTIsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.Pf8ZU8G0eqTZ0MNCuwi55ULkQ5iDKmYKxsnn5J7D3Luj7kcaw1K53yhpuWFXnXRypmLp15XIXBiUGsfI1bi5YvdrFuqmUvgq2CEAJaOeBBnJdlBK_9cXdXizomHL14hepKNBKFhy18a90ZRDP3cbwo9oXuA9zvAvMd5LwekOXa6fPEGEIZevpgfNft8FhqZUWRGMAYd80MJRlY7fIWX3IYVYfcCH5w066okdBpQcMyaInbDwNLKb_XkyGNl4C9d_2LamQYczOD6BnTltqWSH-XUX5gNjex40X4xs3AcR0eTan1Qwp1pTC4Wnfr-qqjyLyrNh_mrO6cpr5SO-pAZ1Og", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "folderId": { + "native": 138954131, + "partner": null + }, + "parentId": { + "native": 128425397, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP (1)", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954131", + "children": "/folders/138954131/children", + "parent": "/folders/128425397" + } + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "63372fd444b1436d8924f0bed789ec29", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "63372fd444b1436d8924f0bed789ec29", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f71038afb30b7-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/folder_children.json b/examples/folder_children.json new file mode 100644 index 0000000..66f3e28 --- /dev/null +++ b/examples/folder_children.json @@ -0,0 +1,233 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/folders/138954131/children", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTMsImV4cCI6MTc2MjM3OTkxMywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiQTc0QUFENTFGNDNGNDEzMDk0RjAxNTExNTVFMjMwMTQiLCJpYXQiOjE3NjIzNzgxMTMsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.8GKzy8wAu-OSMobN6VkSJipdDvNaVOiEPjJDrnDPFAMYK7JxVSFjh4rgocnJymA2coFRTDFaMho5-oni08Bm25TiInf7bbHA4T8B5YTdYYGLyd-ZoVS2X71FSNXXJPLMZz_C4l26wxzdPFXZYV7rhm6MaK6xGhbtYWEMlmT-W31619SR1jPIYoXcujMgmO1VXWY91i32DWA7nDNrvzyic_wvHRdKswx5rNeHIYexAVPb2tCqdOaU556a3_BRb9vBjpyZ6xD54TTypc8d734IkzpWc9S2drgcHu-Y-NXYf0Tt-PgsCRVBq6H1nNmAeTSX10t70hgF5-FZQsZu1qaJGw", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "count": 8, + "offset": 0, + "limit": 50, + "hasMore": false, + "requestedFields": "*", + "items": [ + { + "folderId": { + "native": 138954134, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "5. CMP Prep & File", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954134", + "children": "/folders/138954134/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954135, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "2. Exhibits", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954135", + "children": "/folders/138954135/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954136, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "3. Intake- Forms and Notes", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954136", + "children": "/folders/138954136/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954137, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "8. Motion Prep", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954137", + "children": "/folders/138954137/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954138, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "4. Notice Prep", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954138", + "children": "/folders/138954138/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954139, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "1. Pleadings & Filed Docs", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954139", + "children": "/folders/138954139/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954140, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "6. Service & Default Prep", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954140", + "children": "/folders/138954140/children", + "parent": "/folders/138954131" + } + }, + { + "folderId": { + "native": 138954141, + "partner": null + }, + "parentId": { + "native": 138954131, + "partner": null + }, + "projectId": { + "native": 15974631, + "partner": null + }, + "name": "7. Trial Prep", + "isArchived": false, + "links": { + "project": "/projects/15974631", + "self": "/folders/138954141", + "children": "/folders/138954141/children", + "parent": "/folders/138954131" + } + } + ], + "links": { + "self": "/folders/138954131/children?offset=0&limit=50&requestedFields=*", + "prev": null, + "next": null, + "parent": "/folders/128425397" + } + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "39c5e8d5dcfa4cee8dcbe67c4830a092", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "39c5e8d5dcfa4cee8dcbe67c4830a092", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f710758b27666-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/forms__complaintInfo.json b/examples/forms__complaintInfo.json new file mode 100644 index 0000000..6696077 --- /dev/null +++ b/examples/forms__complaintInfo.json @@ -0,0 +1,292 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/complaintInfo", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzg1NjcsImV4cCI6MTc2MjM4MDM2NywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODU2NywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiODlEMkM2RTEyRDUwMEM4NTVFMTIwRjdDMDhDQ0VDMTgiLCJpYXQiOjE3NjIzNzg1NjcsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.m1Y7eHYZP7egCIIKNOUB9ZzmmcbZnu1bNzssm06-0E7Eboro5rXybzBtn2ZlcdV1BK4h14QAMhO3EfcscXx5Z1-VdBhpPkjao8Ibci1SXlIs9k4f9VpIV4-jYwpgBHvC9KiP-KQuFEqPGe3T91_-R1xuDega8zBBqE8wEsdz7oImo_k9GgR4DCMeHIC9SDoLZQmt9UlMefd3yglbolYkqLP7LjslJhHezaLRN1OzPjXhtzfMH0Y26HMHfhAjndNghuoJyHTs5vMvb1IC9_NmL14ko_myPaXJzSHCeslW7YkdiA_tvl4GhJhjK9tb4BDVqBeFazRqAMqjygJI5qbSww", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "complaintVerificationBy": "Agent for Plaintiff", + "complaintVerificationContact": { + "id": 43407877, + "contactNumber": "0", + "orgID": 9227, + "firstName": "Samantha", + "middleName": null, + "lastName": "Norton", + "fullname": "Samantha Norton", + "isSingleName": false, + "fromCompany": null, + "primaryLanguage": null, + "orgMetaVersionID": 0, + "jobTitle": null, + "department": null, + "prefix": null, + "suffix": null, + "fullnameExtended": "Samantha Norton", + "nickname": null, + "initials": "SN", + "initialsFirstLast": "SN", + "personTypes": [ + { + "id": 107183, + "name": "Property Manager", + "badgeColorClass": null, + "isDeprecated": false, + "includeBirthdateField": false, + "globalSourceGuid": "64474682-4334-41ca-85e9-bdb0fc4ffac0" + } + ], + "tags": [], + "isArchived": false, + "createdDate": "2025-11-04T20:22:31.887Z", + "modifiedDate": "2025-11-04T20:26:41.3Z", + "phones": [ + { + "id": 74943071, + "number": "(408) 712-0299", + "extension": null, + "rawNumber": "4087120299", + "isSmsable": false, + "isFaxable": false, + "label": null, + "phoneLabel": null, + "notes": null + } + ], + "emails": [ + { + "id": 19359086, + "address": "michele@toddrothbardlaw.com", + "emailLabel": null, + "label": null, + "notes": null + } + ], + "addresses": [ + { + "id": 56496788, + "line1": "465 West San Carlos Street", + "line2": "", + "line3": null, + "city": "San Jose", + "state": "CA", + "zip": "95110", + "country": null, + "label": null, + "addressLabel": null, + "notes": null, + "fullAddress": "465 West San Carlos Street, San Jose, CA 95110" + } + ], + "pictureUrl": "/images/Default86c987b2-9505-4182-9486-48c7fb607693.png", + "pictureKey": "Default86c987b2-9505-4182-9486-48c7fb607693.png", + "birthDate": null, + "deathDate": null, + "isDeceased": null, + "ageInYears": null, + "uniqueID": "ea8be4a2-e226-452f-80ae-da25efb05b62", + "abbreviatedName": null, + "ssn": null, + "notes": null, + "specialty": null, + "gender": null, + "language": null, + "maritalStatus": null, + "isTextingPermitted": null, + "remarket": null, + "driverLicenseNumber": null, + "isTypeClient": null, + "isTypeAdjuster": null, + "isTypeDefendant": null, + "isTypePlaintiff": null, + "isTypeAttorney": null, + "isTypeFirm": null, + "isTypeExpert": null, + "isTypeMedicalProvider": null, + "isTypeInvolvedParty": null, + "isTypeJudge": null, + "isTypeCourt": null, + "isTypeInsuranceCompany": null, + "salutation": null, + "barNumber": null, + "fiduciary": null, + "isMinor": null, + "searchNames": [ + "samantha", + "norton", + "samantha norton" + ] + }, + "totalDamagesSought": "over $10,000.00", + "amendedComplaintRequired": null, + "reasonForAmendment": null, + "documentsAmended": null, + "amendmentNumber": null, + "dateAmendmentFiled": null, + "prepareComplaintDocs": null, + "migratedDamages": null, + "cMPPreppedAndApprovedBy": "Michele Le", + "noticeExhibit": "Exhibit A", + "prepareSummonsDoc": { + "id": 492895445, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Summons (SUM-130)(16) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:09.613Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7143, + "reportFusionName": "CMP - Summons (SUM-130)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "937c814b/Ocr-568bd51cd7f04c0ca7a0d3254c86b139.Pdf" + }, + "prepareCivilCaseCoverSheetDocOLD": null, + "prepareUD101DocOLD": null, + "prepareUD120OLD": null, + "noticeType": null, + "prepareComplaintDoc": null, + "premisesCounty": null, + "prepareCivilCaseCoverSheet": { + "id": 492895003, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Civil Case Coversheet (CM-010)(7) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:03.95Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7163, + "reportFusionName": "CMP - Civil Case Coversheet (CM-010)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "fac37db0/Ocr-9d8b538947e24a6cb9b97d900fa22ef3.Pdf" + }, + "prepareUD101": { + "id": 492895477, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Supp Allegations (UD-101)(9) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:17.38Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7166, + "reportFusionName": "CMP - Supp Allegations (UD-101)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "ac764364/Ocr-ae867596cf7a4c10ae251c4dc2e7b2b3.Pdf" + }, + "prepareUD120": { + "id": 492895454, + "orgID": 9227, + "projectID": 15974631, + "filename": "CMP - Verification of RA (UD-120)(5) 2025-11-04 1243.pdf", + "uploadDate": "2025-11-04T20:43:10.737Z", + "templateID": null, + "templateName": null, + "reportFusionID": 7167, + "reportFusionName": "CMP - Verification of RA (UD-120)", + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "92b65ed6/Ocr-965f89bc3e4340539992c465d31e940a.Pdf" + }, + "civilJurisdiction": "Limited", + "prepareNonStip": null, + "complaintSubmittedToCourtEmail": null, + "complaintSubmittedToCourtSanJoaquin Email": null, + "bILLING": null, + "addFeeForResidentialNonpayment": null, + "typeOfTenancy": null, + "uDBaseFeeResidentialNonpa": null, + "addFeeForCommercialNonpayment": null, + "uDBaseFeeCommercialNonpay": null, + "billForCourtFilingFee": null, + "costsInitialCaseFilingFee": null, + "billForServiceOfSummons": null, + "costsServiceOfSummons": null, + "billForUnlimitedEFiling": null, + "costsUnlimitedEFiling": null, + "pIACostsInfoOnlyNotCalc": null, + "billBaseFeeForCase": null, + "useAdditionalPlaintiffsAttach": null, + "useAdditionalDefendantsAttachment": null, + "filedCaseReceivedFromCourt": null, + "checkComplaintTaskList": null, + "prepareAdditionalDefendantsSumAttach": null, + "prepareAdditionalPlaintiffsSumAttach": null, + "selectCountiesThatRequireUD101UD120": "Santa Clara UD-101, UD-120", + "selectCountiesThatRequireAddlFormWCmp": null, + "prepareNonStipToCommissioner": null + }, + "xxx": "b'{\"complaintVerificationBy\":\"Agent for Plaintiff\",\"complaintVerificationContact\":{\"id\":43407877,\"contactNumber\":\"0\",\"orgID\":9227,\"firstName\":\"Samantha\",\"middleName\":null,\"lastName\":\"Norton\",\"fullname\":\"Samantha Norton\",\"isSingleName\":false,\"fromCompany\":null,\"primaryLanguage\":null,\"orgMetaVersionID\":0,\"jobTitle\":null,\"department\":null,\"prefix\":null,\"suffix\":null,\"fullnameExtended\":\"Samantha Norton\",\"nickname\":null,\"initials\":\"SN\",\"initialsFirstLast\":\"SN\",\"personTypes\":[{\"id\":107183,\"name\":\"Property Manager\",\"badgeColorClass\":null,\"isDeprecated\":false,\"includeBirthdateField\":false,\"globalSourceGuid\":\"64474682-4334-41ca-85e9-bdb0fc4ffac0\"}],\"tags\":[],\"isArchived\":false,\"createdDate\":\"2025-11-04T20:22:31.887Z\",\"modifiedDate\":\"2025-11-04T20:26:41.3Z\",\"phones\":[{\"id\":74943071,\"number\":\"(408) 712-0299\",\"extension\":null,\"rawNumber\":\"4087120299\",\"isSmsable\":false,\"isFaxable\":false,\"label\":null,\"phoneLabel\":null,\"notes\":null}],\"emails\":[{\"id\":19359086,\"address\":\"michele@toddrothbardlaw.com\",\"emailLabel\":null,\"label\":null,\"notes\":null}],\"addresses\":[{\"id\":56496788,\"line1\":\"465 West San Carlos Street\",\"line2\":\"\",\"line3\":null,\"city\":\"San Jose\",\"state\":\"CA\",\"zip\":\"95110\",\"country\":null,\"label\":null,\"addressLabel\":null,\"notes\":null,\"fullAddress\":\"465 West San Carlos Street, San Jose, CA 95110\"}],\"pictureUrl\":\"/images/Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"pictureKey\":\"Default86c987b2-9505-4182-9486-48c7fb607693.png\",\"birthDate\":null,\"deathDate\":null,\"isDeceased\":null,\"ageInYears\":null,\"uniqueID\":\"ea8be4a2-e226-452f-80ae-da25efb05b62\",\"abbreviatedName\":null,\"ssn\":null,\"notes\":null,\"specialty\":null,\"gender\":null,\"language\":null,\"maritalStatus\":null,\"isTextingPermitted\":null,\"remarket\":null,\"driverLicenseNumber\":null,\"isTypeClient\":null,\"isTypeAdjuster\":null,\"isTypeDefendant\":null,\"isTypePlaintiff\":null,\"isTypeAttorney\":null,\"isTypeFirm\":null,\"isTypeExpert\":null,\"isTypeMedicalProvider\":null,\"isTypeInvolvedParty\":null,\"isTypeJudge\":null,\"isTypeCourt\":null,\"isTypeInsuranceCompany\":null,\"salutation\":null,\"barNumber\":null,\"fiduciary\":null,\"isMinor\":null,\"searchNames\":[\"samantha\",\"norton\",\"samantha norton\"]},\"totalDamagesSought\":\"over $10,000.00\",\"amendedComplaintRequired\":null,\"reasonForAmendment\":null,\"documentsAmended\":null,\"amendmentNumber\":null,\"dateAmendmentFiled\":null,\"prepareComplaintDocs\":null,\"migratedDamages\":null,\"cMPPreppedAndApprovedBy\":\"Michele Le\",\"noticeExhibit\":\"Exhibit A\",\"prepareSummonsDoc\":{\"id\":492895445,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Summons (SUM-130)(16) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:09.613Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7143,\"reportFusionName\":\"CMP - Summons (SUM-130)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"937c814b/Ocr-568bd51cd7f04c0ca7a0d3254c86b139.Pdf\"},\"prepareCivilCaseCoverSheetDocOLD\":null,\"prepareUD101DocOLD\":null,\"prepareUD120OLD\":null,\"noticeType\":null,\"prepareComplaintDoc\":null,\"premisesCounty\":null,\"prepareCivilCaseCoverSheet\":{\"id\":492895003,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Civil Case Coversheet (CM-010)(7) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:03.95Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7163,\"reportFusionName\":\"CMP - Civil Case Coversheet (CM-010)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"fac37db0/Ocr-9d8b538947e24a6cb9b97d900fa22ef3.Pdf\"},\"prepareUD101\":{\"id\":492895477,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Supp Allegations (UD-101)(9) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:17.38Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7166,\"reportFusionName\":\"CMP - Supp Allegations (UD-101)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"ac764364/Ocr-ae867596cf7a4c10ae251c4dc2e7b2b3.Pdf\"},\"prepareUD120\":{\"id\":492895454,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"CMP - Verification of RA (UD-120)(5) 2025-11-04 1243.pdf\",\"uploadDate\":\"2025-11-04T20:43:10.737Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":7167,\"reportFusionName\":\"CMP - Verification of RA (UD-120)\",\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"92b65ed6/Ocr-965f89bc3e4340539992c465d31e940a.Pdf\"},\"civilJurisdiction\":\"Limited\",\"prepareNonStip\":null,\"complaintSubmittedToCourtEmail\":null,\"complaintSubmittedToCourtSanJoaquin Email\":null,\"bILLING\":null,\"addFeeForResidentialNonpayment\":null,\"typeOfTenancy\":null,\"uDBaseFeeResidentialNonpa\":null,\"addFeeForCommercialNonpayment\":null,\"uDBaseFeeCommercialNonpay\":null,\"billForCourtFilingFee\":null,\"costsInitialCaseFilingFee\":null,\"billForServiceOfSummons\":null,\"costsServiceOfSummons\":null,\"billForUnlimitedEFiling\":null,\"costsUnlimitedEFiling\":null,\"pIACostsInfoOnlyNotCalc\":null,\"billBaseFeeForCase\":null,\"useAdditionalPlaintiffsAttach\":null,\"useAdditionalDefendantsAttachment\":null,\"filedCaseReceivedFromCourt\":null,\"checkComplaintTaskList\":null,\"prepareAdditionalDefendantsSumAttach\":null,\"prepareAdditionalPlaintiffsSumAttach\":null,\"selectCountiesThatRequireUD101UD120\":\"Santa Clara UD-101, UD-120\",\"selectCountiesThatRequireAddlFormWCmp\":null,\"prepareNonStipToCommissioner\":null}'", + "headers": { + "Date": "Wed, 05 Nov 2025 21:36:07 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "036fe74602744fce9b4ac1ad098620cd", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "036fe74602744fce9b4ac1ad098620cd", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f7c1d8e1476fd-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/forms__newFileReview.json b/examples/forms__newFileReview.json new file mode 100644 index 0000000..2398f61 --- /dev/null +++ b/examples/forms__newFileReview.json @@ -0,0 +1,162 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/Forms/newFileReview", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzg1NjcsImV4cCI6MTc2MjM4MDM2NywiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODU2NywiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiQTUxODc4MkMyNkZBNkVBMDNDNUFFOEJEMUZCOURDNzgiLCJpYXQiOjE3NjIzNzg1NjcsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.R6ma9rIVFDrazbAFh5wmie-tD80UOgeEZlFk3EyrkoQw-thY2zu4IYJzwvBbQbXigg_SJ_DOhg4HyhEV2o9rpHi9mQh0U1KXiy61lFOIGxl1mYrqN7vtg1LxTOXU_nCHoNFJ_gu0EkvOCcMVJfLd99GItT7wWXqldqegzrLueBHDUqwsYDd7jyeffPD_2PmI0lA8WXDxSB4WrOduRkAOSdSHDt4lZMybhQKxaBJ470iumtUiNwT9fdjO7hXWnAQSTBSA26cAcy3SOMlg16ZTWOkVt-7U7j0wnYN9MJlQWG3Tqqds5Ft1J8dloqQXriu_fWuq6JSMLoZ7hxoySXjvqQ", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "newFileBriefDescription": null, + "newFileDetailedDescription": null, + "noticeType": "Notice to Pay or Quit (NP)", + "newFileNoticeToPrepNotes": null, + "attorneyNewFileReviewNotes": null, + "noticePrepNotesForReviewer": null, + "noticeServiceDate": "2025-08-06T00:00:00Z", + "noticeExpirationDate": null, + "tenantCompliedWithNTCNTP": null, + "tenantVacatedPerNotice": null, + "nTCNTPViolationAfterNotic": null, + "subpoenaNonStaffWitnesses": null, + "attorneyFeesBaseFees": null, + "attorneyFeesNTC": null, + "actionUnder11612": true, + "actionUnder11611": null, + "actionUnder11613Curable": null, + "actionUnder11613Incurabl": null, + "actionUnder11614Subletti": null, + "actionUnder11614Nuisance": null, + "actionUnder11615": null, + "actionUnder11614Crime": null, + "actionUnder1161A": null, + "116115CaseType": null, + "194612CaseType": null, + "1161ACaseType": null, + "showMMOTerms": null, + "mmoVacateDate": null, + "mmoPaymentsIncluded": null, + "mmoPaymentAmount1": null, + "mmoPaymentDate1": null, + "mmoRelocationPayments": null, + "mmoWaiverOfClaims": null, + "noticeIsRentOnly": null, + "noticeNotes": null, + "noticeDays": null, + "noticeResult": null, + "noticeDateSpecifiedToVacate": null, + "mutualTerminationAgreementT": null, + "secondCauseOfAction": null, + "includeSecondCauseOfAction": null, + "secondCauseOfActionType": null, + "secondCauseNoticeServiceDate": null, + "amountDemandedInNotice": 6461.0, + "dailyRentDamagesBegin": "2025-09-06T00:00:00Z", + "commRentAcceptedAfterNotice": null, + "noticeDaysAndAmounts": null, + "secondCauseNoticeDaysPerform": null, + "secondCauseNoticeDaysVacate": null, + "secondCauseNoticeExhibitNum": null, + "noticeDaysToPayOrPerform": 3, + "noticeDaysToVacate": 30, + "employmentTerminationDate": null, + "causeOfAction": null, + "mMOSignedOn": null, + "noticeToCorrectServedPrior": null, + "commercialRentStillOwing": 6461.0, + "ourServerToServeTheNotice": null, + "attorneyNoticeServiceTaskList": null, + "sendNTCToClientToServe": null, + "sendNTCToClientToReview": null, + "noticeSubmissionAndService": null, + "billNTC": null, + "attorneyFeesNTC_1": null, + "billResidentialNonmonetary": null, + "billCommercialNonmonetary": null, + "uDBaseFeeResidentialNonmo": null, + "uDBaseFeeCommercialNonmon": null, + "billForMMOLetterContract": null, + "attorneyFeesLetterMMOCo": null, + "bILLING": null, + "billForNoticePrepOnly": null, + "attorneyFeesNoticeOnly": null, + "billForNPReviewAndPrepOnly": null, + "attorneyFeesNonpaymentRevi": null, + "billForTenantBuyOutAgreementOnly": null, + "attorneyFeesTenantBuyOut": null, + "billForServiceOfNotice": null, + "costsServiceOfNotice": null, + "isThisACaseTakeover": null, + "caseTakeoverAdditionalFee": null, + "typeOfTenancy": null, + "emailProcessServerRequestingPhotoOfPosting": null, + "operativeNotice": { + "id": 492890225, + "orgID": 9227, + "projectID": 15974631, + "filename": "S. Whelan Proof of Service.pdf", + "uploadDate": "2025-11-04T20:41:38.54Z", + "templateID": null, + "templateName": null, + "reportFusionID": null, + "reportFusionName": null, + "contractID": null, + "canEditInPlace": true, + "lockedByUserID": null, + "lockedTime": null, + "lockExpirationTime": null, + "lockedByUserFullName": null, + "isPending": false, + "isProtected": false, + "isProtectedPlaceholder": false, + "contract": null, + "antivirusScanResult": [], + "docKey": "26a2320e/Ocr-c6614e8966514338ab80ebb9f9c28912.Pdf" + }, + "areThereNotesForTheReview": null, + "noticePrepperNotes": null, + "sendNTPToCLIENTTOSERVE": null, + "sendNTPToClientToReview": null, + "sendNTQToCLIENTTOSERVE": null, + "sendNTQToClientToReview": null, + "sendNTVToCLIENTTOSERVE": null, + "sendNTVToClientToReview": null, + "sendNTTToCLIENTTOSERVE": null, + "sendNTTToClientToReview": null, + "sendMMOToCLIENTTOSIGN": null + }, + "xxx": "b'{\"newFileBriefDescription\":null,\"newFileDetailedDescription\":null,\"noticeType\":\"Notice to Pay or Quit (NP)\",\"newFileNoticeToPrepNotes\":null,\"attorneyNewFileReviewNotes\":null,\"noticePrepNotesForReviewer\":null,\"noticeServiceDate\":\"2025-08-06T00:00:00Z\",\"noticeExpirationDate\":null,\"tenantCompliedWithNTCNTP\":null,\"tenantVacatedPerNotice\":null,\"nTCNTPViolationAfterNotic\":null,\"subpoenaNonStaffWitnesses\":null,\"attorneyFeesBaseFees\":null,\"attorneyFeesNTC\":null,\"actionUnder11612\":true,\"actionUnder11611\":null,\"actionUnder11613Curable\":null,\"actionUnder11613Incurabl\":null,\"actionUnder11614Subletti\":null,\"actionUnder11614Nuisance\":null,\"actionUnder11615\":null,\"actionUnder11614Crime\":null,\"actionUnder1161A\":null,\"116115CaseType\":null,\"194612CaseType\":null,\"1161ACaseType\":null,\"showMMOTerms\":null,\"mmoVacateDate\":null,\"mmoPaymentsIncluded\":null,\"mmoPaymentAmount1\":null,\"mmoPaymentDate1\":null,\"mmoRelocationPayments\":null,\"mmoWaiverOfClaims\":null,\"noticeIsRentOnly\":null,\"noticeNotes\":null,\"noticeDays\":null,\"noticeResult\":null,\"noticeDateSpecifiedToVacate\":null,\"mutualTerminationAgreementT\":null,\"secondCauseOfAction\":null,\"includeSecondCauseOfAction\":null,\"secondCauseOfActionType\":null,\"secondCauseNoticeServiceDate\":null,\"amountDemandedInNotice\":6461.00000000,\"dailyRentDamagesBegin\":\"2025-09-06T00:00:00Z\",\"commRentAcceptedAfterNotice\":null,\"noticeDaysAndAmounts\":null,\"secondCauseNoticeDaysPerform\":null,\"secondCauseNoticeDaysVacate\":null,\"secondCauseNoticeExhibitNum\":null,\"noticeDaysToPayOrPerform\":3,\"noticeDaysToVacate\":30,\"employmentTerminationDate\":null,\"causeOfAction\":null,\"mMOSignedOn\":null,\"noticeToCorrectServedPrior\":null,\"commercialRentStillOwing\":6461.00000000,\"ourServerToServeTheNotice\":null,\"attorneyNoticeServiceTaskList\":null,\"sendNTCToClientToServe\":null,\"sendNTCToClientToReview\":null,\"noticeSubmissionAndService\":null,\"billNTC\":null,\"attorneyFeesNTC_1\":null,\"billResidentialNonmonetary\":null,\"billCommercialNonmonetary\":null,\"uDBaseFeeResidentialNonmo\":null,\"uDBaseFeeCommercialNonmon\":null,\"billForMMOLetterContract\":null,\"attorneyFeesLetterMMOCo\":null,\"bILLING\":null,\"billForNoticePrepOnly\":null,\"attorneyFeesNoticeOnly\":null,\"billForNPReviewAndPrepOnly\":null,\"attorneyFeesNonpaymentRevi\":null,\"billForTenantBuyOutAgreementOnly\":null,\"attorneyFeesTenantBuyOut\":null,\"billForServiceOfNotice\":null,\"costsServiceOfNotice\":null,\"isThisACaseTakeover\":null,\"caseTakeoverAdditionalFee\":null,\"typeOfTenancy\":null,\"emailProcessServerRequestingPhotoOfPosting\":null,\"operativeNotice\":{\"id\":492890225,\"orgID\":9227,\"projectID\":15974631,\"filename\":\"S. Whelan Proof of Service.pdf\",\"uploadDate\":\"2025-11-04T20:41:38.54Z\",\"templateID\":null,\"templateName\":null,\"reportFusionID\":null,\"reportFusionName\":null,\"contractID\":null,\"canEditInPlace\":true,\"lockedByUserID\":null,\"lockedTime\":null,\"lockExpirationTime\":null,\"lockedByUserFullName\":null,\"isPending\":false,\"isProtected\":false,\"isProtectedPlaceholder\":false,\"contract\":null,\"antivirusScanResult\":[],\"docKey\":\"26a2320e/Ocr-c6614e8966514338ab80ebb9f9c28912.Pdf\"},\"areThereNotesForTheReview\":null,\"noticePrepperNotes\":null,\"sendNTPToCLIENTTOSERVE\":null,\"sendNTPToClientToReview\":null,\"sendNTQToCLIENTTOSERVE\":null,\"sendNTQToClientToReview\":null,\"sendNTVToCLIENTTOSERVE\":null,\"sendNTVToClientToReview\":null,\"sendNTTToCLIENTTOSERVE\":null,\"sendNTTToClientToReview\":null,\"sendMMOToCLIENTTOSIGN\":null}'", + "headers": { + "Date": "Wed, 05 Nov 2025 21:36:08 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "7b812c03fc7d43268db5f92417c09684", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "7b812c03fc7d43268db5f92417c09684", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f7c21dd504f73-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/project.json b/examples/project.json new file mode 100644 index 0000000..78e0e1d --- /dev/null +++ b/examples/project.json @@ -0,0 +1,91 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/projects/15974631", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTAsImV4cCI6MTc2MjM3OTkxMCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMTQ0OURBOTkwNzZERTBCMTg3Q0RCODg0OUE3NzI1OEUiLCJpYXQiOjE3NjIzNzgxMTAsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.DZlT9HzqkcNZO_Qk9gdfS70FTnTULRPPuVygzfkRSLuG4ypRQ1azmBZK61sG4aj3oGCevkvPLdGWt0zt71OXrFu9jyubf4BGLbN5GPwlI-A_wHQMGVN-AdBnauFuH5cluo_FaaR62T4p3F9hPosiwwBa6vGRsmiZj3dstA0wUY88pGFK9RNj3AfNaWiM8ndB-3P7GqnOROHE5R23U8IoXEvtIIGWmZ8CGI6Jmmpf9a9wr39Y3pA1JSZinrLCBAiG82VS0fJN-f9-OUfMl4z4lgj5zft4YBxJ3oCjqK8HuKS85BSVx_c6P5NpIgohRn1v-0uONhHkf9m7jprxhYI3Aw", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138954131, + "partner": null + }, + "phaseName": "Service of Process", + "phaseDate": "2025-11-04T20:59:21.297Z", + "clientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)", + "clientPictureURL": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", + "clientPictureKey": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-11-04T20:57:53.923Z", + "uniqueKey": "MuseumParkApartmentsZ15974631", + "projectOrClientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MuseumParkApartmentsZ15974631@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:20:15.383Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974631", + "projectId": { + "native": 15974631, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407853, + "partner": null + }, + "contactNumber": "0", + "projectName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "phaseId": { + "native": 210761, + "partner": null + }, + "links": { + "self": "/projects/15974631", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138954131", + "client": "/contacts/43407853", + "contacts": "/projects/15974631/contacts" + } + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:30 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "18f5b5b8fc9f4b4da82ec5a170ded7aa", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "18f5b5b8fc9f4b4da82ec5a170ded7aa", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f70f74e88ebb7-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/project_contacts.json b/examples/project_contacts.json index 2a44400..5f08cde 100644 --- a/examples/project_contacts.json +++ b/examples/project_contacts.json @@ -1,9 +1,9 @@ { "sample_request": { - "url": "https://api.filevineapp.com/fv-app/v2/Projects/15905506/contacts", + "url": "https://api.filevineapp.com/fv-app/v2/Projects/15974631/contacts", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjExNzg4NzUsImV4cCI6MTc2MTE4MDY3NSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MTE3ODg3NSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJmUkEwbHRoSnp5aTBBWU9ZS1F4WGVlckczUHc1MXEyMmh4cTlzbk4zL2V3PSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRTg1ODdBNDY3NkI1OTg2M0U0OTAxNkNFRTYxNDNFNjciLCJpYXQiOjE3NjExNzg4NzUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.mjeEZUAE466DLME0jmRu_znERUH6_85AitHzgDrQlWPpeIy_18-B5x9hG2-wAp2s_WGdjn2eRc8qmy5wD9vbw4k1-L3HNhfI_9s24MGbanXWeu9eGHenY092D12W4eoJYlYCCpbGhqPNbql021hbU6TZTTGs2IMfwBy9k5H2HVCkPd2NbswuEsTt_M1XUUe-6duqEIGWdYQ097xGcVl3tGYgAxR6nyICyiovxVRZXsuKGK0a5r_7KKSZwM6v1brB9V08oBBsGoTRaLe_uxG-YHrMSPZ0JXvLxvzT8XXLh5RMXd2ijekHQ9nMKehmxojiQKg20r8_4kUtzZlkyeL_WQ", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTEsImV4cCI6MTc2MjM3OTkxMSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExMCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiRTNERkFFNUNBQzA0N0FCMDVGNzE0MjQ1QTQ2MDEzQTciLCJpYXQiOjE3NjIzNzgxMTEsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.sDbqLownX8ywTZB2YFBDok88aa7J_S0Q7MQULQmNt512GK-ksgnUPE1rvcZ8xPQo4myOrmSWpNTB-MTjgIOdyVNlm_ZYHCJP3CL06HJA3VqeQt8DbXgLr4hBNZHuzLvfVumeCdx3QRP035atX6qTvU_AsZIcYK-EgW0HerHnw9lNAkVvOoU9-5LGMp542xS4DQN9lohyEQocB2tfIJJZBlyYgxIm4F-4KrQCql9VQ8o9FK6Wv9b-WcyCVk_WxeiZEIrI_Hv3pPRXBKDWBUXTPrdVYUBC6oubR-CUKofStBVWvEEj26lbMSWCtOAtsMK8MK8U8azB76bG5amTuQOt_g", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -13,7 +13,7 @@ "sample_response": { "status_code": 200, "json": { - "count": 3, + "count": 4, "offset": 0, "limit": 50, "hasMore": false, @@ -21,48 +21,46 @@ "items": [ { "projectId": { - "native": 15905506, + "native": 15974631, "partner": null }, "orgContactId": { - "native": 43125848, + "native": 43407877, "partner": null }, "roles": [ - "Property Contacts: Property Manager 1" + "Property Contacts: Property Manager 1", + "Complaint Info: Complaint Verification Contact" ], "orgContact": { "personId": { - "native": 43125848, + "native": 43407877, "partner": null }, - "firstName": "Brian", - "middleName": "Robert", - "lastName": "Testy", + "firstName": "Samantha", + "lastName": "Norton", "isSingleName": false, - "fullName": "Brian Robert Testy", - "primaryEmail": "brianskarbek@gmail.com", - "pictureUrl": "/images/Default64896de9-7ee8-47a4-bcd2-1df186e6230a.png", - "pictureKey": "Default64896de9-7ee8-47a4-bcd2-1df186e6230a.png", + "fullName": "Samantha Norton", + "primaryEmail": "michele@toddrothbardlaw.com", + "pictureUrl": "/images/Default86c987b2-9505-4182-9486-48c7fb607693.png", + "pictureKey": "Default86c987b2-9505-4182-9486-48c7fb607693.png", "personTypes": [ "Property Manager" ], - "uniqueId": "4daf252f-db81-4ca7-b7e4-0a5fd801170c", + "uniqueId": "ea8be4a2-e226-452f-80ae-da25efb05b62", "searchNames": [ - "brian", - "robert", - "testy", - "brian robert testy", - "brian testy" + "samantha", + "norton", + "samantha norton" ], "phones": [ { "phoneId": { - "native": 74619813, + "native": 74943071, "partner": null }, - "number": "4084821733", - "rawNumber": "4084821733", + "number": "(408) 712-0299", + "rawNumber": "4087120299", "isSmsable": false, "isFaxable": false, "links": {} @@ -71,47 +69,116 @@ "emails": [ { "emailId": { - "native": 19265473, + "native": 19359086, "partner": null }, - "address": "brianskarbek@gmail.com", + "address": "michele@toddrothbardlaw.com", "links": {} } ], "addresses": [ { "addressId": { - "native": 56313190, + "native": 56496788, "partner": null }, - "line1": "2926 Neal Ave", + "line1": "465 West San Carlos Street", "line2": "", "city": "San Jose", "state": "CA", - "postalCode": "95128", - "fullAddress": "2926 Neal Ave, San Jose, CA 95128", + "postalCode": "95110", + "fullAddress": "465 West San Carlos Street, San Jose, CA 95110", "links": {} } ], "hashtags": [], - "modifiedDate": "2025-10-18T14:24:54.16Z", + "modifiedDate": "2025-11-04T20:26:41.3Z", "links": { - "self": "/contacts/43125848", - "projects": "/contacts/43125848/projects", - "phones": "/contacts/43125848/phones", - "emailAddresses": "/contacts/43125848/emailAddresses", - "addresses": "/contacts/43125848/addresses" + "self": "/contacts/43407877", + "projects": "/contacts/43407877/projects", + "phones": "/contacts/43407877/phones", + "emailAddresses": "/contacts/43407877/emailAddresses", + "addresses": "/contacts/43407877/addresses" } }, "links": {} }, { "projectId": { - "native": 15905506, + "native": 15974631, "partner": null }, "orgContactId": { - "native": 43193362, + "native": 43407894, + "partner": null + }, + "roles": [ + "Property Contacts: Regional Property Manager" + ], + "orgContact": { + "personId": { + "native": 43407894, + "partner": null + }, + "firstName": "Erica", + "lastName": "Rangel", + "isSingleName": false, + "fullName": "Erica Rangel", + "primaryEmail": "michele@toddrothbardlaw.com", + "pictureUrl": "/images/Defaultce125e61-d1d2-4c3d-94fe-c2408b020204.png", + "pictureKey": "Defaultce125e61-d1d2-4c3d-94fe-c2408b020204.png", + "personTypes": [ + "Property Manager" + ], + "uniqueId": "c18b64f1-1451-4143-afd5-8f23cd32ea83", + "searchNames": [ + "erica", + "rangel", + "erica rangel" + ], + "phones": [ + { + "phoneId": { + "native": 74943067, + "partner": null + }, + "number": "(408) 784-1930", + "rawNumber": "4087841930", + "isSmsable": false, + "isFaxable": false, + "links": {} + } + ], + "emails": [ + { + "emailId": { + "native": 19359083, + "partner": null + }, + "address": "michele@toddrothbardlaw.com", + "links": {} + } + ], + "addresses": [], + "hashtags": [], + "modifiedDate": "2025-11-04T20:26:20.393Z", + "links": { + "self": "/contacts/43407894", + "projects": "/contacts/43407894/projects", + "phones": "/contacts/43407894/phones", + "emailAddresses": "/contacts/43407894/emailAddresses", + "addresses": "/contacts/43407894/addresses" + } + }, + "links": {} + }, + { + "projectId": { + "native": 15974631, + "partner": null + }, + "orgContactId": { + "native": 43407932, "partner": null }, "roles": [ @@ -119,92 +186,92 @@ ], "orgContact": { "personId": { - "native": 43193362, + "native": 43407932, "partner": null }, - "firstName": "Bad", - "lastName": "Guy", + "firstName": "Stephanie", + "lastName": "Whelan", "isSingleName": false, - "fullName": "Bad Guy", - "pictureUrl": "/images/Defaultf6812c31-f9e7-4961-b7da-89adcd48dbac.png", - "pictureKey": "Defaultf6812c31-f9e7-4961-b7da-89adcd48dbac.png", + "fullName": "Stephanie Whelan", + "pictureUrl": "/images/Default94c18da6-239b-4c00-975b-d6449c9e88a7.png", + "pictureKey": "Default94c18da6-239b-4c00-975b-d6449c9e88a7.png", "personTypes": [ "Defendant" ], - "uniqueId": "3368bc70-4aed-4349-9fd6-0cd2dca654ae", + "uniqueId": "adee1c85-656d-45df-9a31-a57cc627ad4b", "searchNames": [ - "bad", - "guy", - "bad guy" + "stephanie", + "whelan", + "stephanie whelan" ], "phones": [], "emails": [], "addresses": [], "hashtags": [], - "modifiedDate": "2025-10-22T15:29:38.463Z", + "modifiedDate": "2025-11-04T20:32:25.623Z", "links": { - "self": "/contacts/43193362", - "projects": "/contacts/43193362/projects", - "phones": "/contacts/43193362/phones", - "emailAddresses": "/contacts/43193362/emailAddresses", - "addresses": "/contacts/43193362/addresses" + "self": "/contacts/43407932", + "projects": "/contacts/43407932/projects", + "phones": "/contacts/43407932/phones", + "emailAddresses": "/contacts/43407932/emailAddresses", + "addresses": "/contacts/43407932/addresses" } }, "links": {} }, { "projectId": { - "native": 15905506, + "native": 15974631, "partner": null }, "orgContactId": { - "native": 43182533, + "native": 43212479, "partner": null }, "roles": [ - "Matter Overview: Signing Attorney" + "Matter Random Info: Signing Attorney" ], "orgContact": { "personId": { - "native": 43182533, + "native": 43212479, "partner": null }, - "firstName": "Brian", - "lastName": "Skarbek", + "firstName": "Michele", + "lastName": "Le", "isSingleName": false, - "fullName": "Brian Skarbek", - "primaryEmail": "Brian@ToddRothbardLaw.com", - "pictureUrl": "/images/Default96eecdd8-0702-4099-9ef2-254bb3a788fa.png", - "pictureKey": "Default96eecdd8-0702-4099-9ef2-254bb3a788fa.png", + "fullName": "Michele Le", + "primaryEmail": "michele@toddrothbardlaw.com", + "pictureUrl": "/images/Default047885b6-2add-4ba0-9408-d18092530180.png", + "pictureKey": "Default047885b6-2add-4ba0-9408-d18092530180.png", "personTypes": [ "Attorney" ], - "uniqueId": "f0cab457-e837-4341-843d-a8afb4265beb", + "uniqueId": "ad9a4bf1-e913-4d43-b813-05a7c55025f4", "searchNames": [ - "brian", - "skarbek", - "brian skarbek" + "michele", + "le", + "michele le" ], "phones": [], "emails": [ { "emailId": { - "native": 19294763, + "native": 19307621, "partner": null }, - "address": "Brian@ToddRothbardLaw.com", + "address": "michele@toddrothbardlaw.com", "links": {} } ], "addresses": [], "hashtags": [], - "modifiedDate": "2025-10-20T23:47:10.213Z", + "modifiedDate": "2025-10-28T19:30:03.353Z", "links": { - "self": "/contacts/43182533", - "projects": "/contacts/43182533/projects", - "phones": "/contacts/43182533/phones", - "emailAddresses": "/contacts/43182533/emailAddresses", - "addresses": "/contacts/43182533/addresses" + "self": "/contacts/43212479", + "projects": "/contacts/43212479/projects", + "phones": "/contacts/43212479/phones", + "emailAddresses": "/contacts/43212479/emailAddresses", + "addresses": "/contacts/43212479/addresses" } }, "links": {} @@ -217,7 +284,7 @@ } }, "headers": { - "Date": "Thu, 23 Oct 2025 00:21:15 GMT", + "Date": "Wed, 05 Nov 2025 21:28:31 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -228,18 +295,18 @@ "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", - "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", - "x-filevine-api-version": "3.3426.3.0", - "x-fv-correlation-id": "51ff3a6e96c24996b386a4177bef952a", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "3626bb4a49e94212a849d79f5115ba79", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "51ff3a6e96c24996b386a4177bef952a", + "x-fv-gateway-correlation-id": "3626bb4a49e94212a849d79f5115ba79", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "992d12c2ec4131ba-SEA", + "CF-RAY": "999f70fa1e42f8dd-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/project_list.json b/examples/project_list.json index 8acd918..dde7c22 100644 --- a/examples/project_list.json +++ b/examples/project_list.json @@ -3,7 +3,7 @@ "url": "https://api.filevineapp.com/fv-app/v2/projects", "headers": { "Accept": "application/json", - "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjExNzg4NzQsImV4cCI6MTc2MTE4MDY3NCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MTE3ODg3NCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJmUkEwbHRoSnp5aTBBWU9ZS1F4WGVlckczUHc1MXEyMmh4cTlzbk4zL2V3PSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiODlCRTQzRDlDRTYwQkNFNzg4Mzc5OEE1M0VBQkYwQTAiLCJpYXQiOjE3NjExNzg4NzQsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.P5rPsrBwt0MQ7SmR9l0K0WXgTkqStXXbyYRYCmjPaBnJZjLljMLkpqZsFYDf3pyg6t9oZK_oa86sGa7H13SBIocWqV70hloqAVn1uinwzKxS1gv0xvUdTkd_uPgJZPvQwsu_Py4RrXcHkhtH8dqOGO_VFBFyYvt5RSNUpVtS6ofP0srbxoAOUEsYW-VhmKV8ugcdFzATgTx6k6gXyy1fTKoa_s7tVSFcOe-yPD7xpnixY3aqnYFaCSf5PYzd9l7iBPzfgjn0cFWnOjtxKSl_fxzQacJqOonrSPYdTlNf-F6h5E-yT-CQuVVWRplcbadEDvgMptTQjbprZHTMLfdn-w", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMDksImV4cCI6MTc2MjM3OTkwOSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODEwOSwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiNjhCNTUyQkUwOTk4NzcxQjFENkMyOUEzM0QyRUUzQTAiLCJpYXQiOjE3NjIzNzgxMDksInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.njGPmbQcZ5aR-3Y6UOorGroLsH5H3z83lloOYpycPy9VpI3PZH8OeFITx6eimMkBPRx7t-vznfZk9U8rFmWK3V4OKvDCYj1bx7aJLL9KDggUgZVC6UdYLLqnnTi8C0fBsDKglpu8gOHMIsGhS8QxRpcN4P4ffLs72nvWPKg-O_ssguRoeyaFg7wqYDrCN74rvzqJ82sn3bIYkjryN3dEmyUYPM_8Sj361Jgc07vvhuli4S-WicnRf2p9UbsdafgA_-oHQMHBHd-zdPsQnMfhM-MEsSypzWUVRFSu7oVbsbi82KtnO41MNMXaHWciGIS-FR7rKTOtExNjO7dJtuoCHg", "x-fv-orgid": "9227", "x-fv-userid": "100510" }, @@ -13,37 +13,37 @@ "sample_response": { "status_code": 200, "json": { - "count": 8, + "count": 50, "offset": 0, "limit": 50, - "hasMore": false, + "hasMore": true, "requestedFields": "*", "items": [ { "projectTypeCode": "EVICT", "rootDocFolderId": { - "native": 138236604, + "native": 139005841, "partner": null }, "phaseName": "Nonpayment File Review", - "phaseDate": "2025-10-22T15:23:59.89Z", - "clientName": "Twin Pines Apartments (Twin Pine LLC)", - "clientPictureURL": "/images/Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png", - "clientPictureKey": "Default6eba3d0d-6227-44c3-b907-8311c3d4da82.png", + "phaseDate": "2025-11-05T20:39:27.9Z", + "clientName": "Madelaine Julian", + "clientPictureURL": "/images/Defaultf316da49-9cb6-46dd-86e3-13c9e577c650.png", + "clientPictureKey": "Defaultf316da49-9cb6-46dd-86e3-13c9e577c650.png", "clientPictureS3Url": "", - "firstPrimaryName": "Lani", - "firstPrimaryUsername": "lani2", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", "isArchived": false, - "lastActivity": "2025-10-22T15:27:44.177Z", - "uniqueKey": "TwinPinesApartmentsZ15905506", - "projectOrClientName": "Twin Pines Apartments (Twin Pine LLC) v. Guy, #12, NP", + "lastActivity": "2025-11-05T20:17:19.317Z", + "uniqueKey": "TestZ15975531", + "projectOrClientName": "Test 6", "hashtags": [], "orgId": 9227, - "projectEmailAddress": "TwinPinesApartmentsZ15905506@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-10-22T15:03:48.41Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15905506", + "projectEmailAddress": "TestZ15975531@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-05T20:17:19.313Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15975531", "projectId": { - "native": 15905506, + "native": 15975531, "partner": null }, "projectTypeId": { @@ -51,241 +51,47 @@ "partner": null }, "clientId": { - "native": 43125866, + "native": 43411035, "partner": null }, - "projectName": "Twin Pines Apartments (Twin Pine LLC) v. Guy, #12, NP", + "projectName": "Test 6", "phaseId": { "native": 209436, "partner": null }, "links": { - "self": "/projects/15905506", + "self": "/projects/15975531", "projectType": "/projecttypes/34111", - "rootFolder": "/folders/138236604", - "client": "/contacts/43125866", - "contacts": "/projects/15905506/contacts" + "rootFolder": "/folders/139005841", + "client": "/contacts/43411035", + "contacts": "/projects/15975531/contacts" } }, { "projectTypeCode": "EVICT", "rootDocFolderId": { - "native": 138206532, + "native": 138967726, "partner": null }, - "phaseName": "Nonpayment File Review", - "phaseDate": "2025-10-21T14:42:31.18Z", - "clientName": "3900 Adeline", - "clientPictureURL": "/images/avatar-user-placeholder.png", - "clientPictureKey": "avatar-user-placeholder.png", - "clientPictureS3Url": "", - "firstPrimaryName": "Rebecca Hartzler", - "firstPrimaryUsername": "rebecca63", - "isArchived": false, - "lastActivity": "2025-10-21T15:29:19.773Z", - "uniqueKey": "AdelineZ15902340", - "projectOrClientName": "3900 Adeline (3900 Adeline, LLC) v. Patten, #323, NP", - "hashtags": [], - "orgId": 9227, - "projectEmailAddress": "AdelineZ15902340@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-10-21T14:38:26.957Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15902340", - "projectId": { - "native": 15902340, - "partner": null - }, - "projectTypeId": { - "native": 34111, - "partner": null - }, - "clientId": { - "native": 43183162, - "partner": null - }, - "projectName": "3900 Adeline (3900 Adeline, LLC) v. Patten, #323, NP", - "phaseId": { - "native": 209436, - "partner": null - }, - "links": { - "self": "/projects/15902340", - "projectType": "/projecttypes/34111", - "rootFolder": "/folders/138206532", - "client": "/contacts/43183162", - "contacts": "/projects/15902340/contacts" - } - }, - { - "projectTypeCode": "EVICT", - "rootDocFolderId": { - "native": 138179643, - "partner": null - }, - "phaseName": "Nonpayment File Review", - "phaseDate": "2025-10-20T15:07:56.023Z", - "clientName": "Bates Motel (Bates Motel Group, LLC)", - "clientPictureURL": "/images/Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", - "clientPictureKey": "Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", - "clientPictureS3Url": "", - "firstPrimaryName": "Stephanie Gonzalez", - "firstPrimaryUsername": "stephanie148", - "isArchived": false, - "lastActivity": "2025-10-21T00:07:51.847Z", - "uniqueKey": "vFakeDefendantNPZ15901312", - "projectOrClientName": "v. Fake Defendant, #50, NP", - "hashtags": [], - "orgId": 9227, - "projectEmailAddress": "vFakeDefendantNPZ15901312@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-10-20T14:31:07.29Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15901312", - "projectId": { - "native": 15901312, - "partner": null - }, - "projectTypeId": { - "native": 34111, - "partner": null - }, - "clientId": { - "native": 40576359, - "partner": null - }, - "projectName": "v. Fake Defendant, #50, NP", - "phaseId": { - "native": 209436, - "partner": null - }, - "links": { - "self": "/projects/15901312", - "projectType": "/projecttypes/34111", - "rootFolder": "/folders/138179643", - "client": "/contacts/40576359", - "contacts": "/projects/15901312/contacts" - } - }, - { - "projectTypeCode": "EVICT", - "rootDocFolderId": { - "native": 138011554, - "partner": null - }, - "phaseName": "Migrated", - "phaseDate": "2025-10-16T20:33:18.8Z", - "clientName": "ABC Property Management", - "clientPictureURL": "/images/Default5888c798-e92d-4c2e-82e9-737a564b5317.png", - "clientPictureKey": "Default5888c798-e92d-4c2e-82e9-737a564b5317.png", - "clientPictureS3Url": "", - "firstPrimaryName": "Brian Skarbek", - "firstPrimaryUsername": "brianskarbek", - "isArchived": false, - "lastActivity": "2025-10-16T20:33:18.803Z", - "uniqueKey": "TBDZ15896299", - "projectOrClientName": "TBD", - "hashtags": [], - "orgId": 9227, - "projectEmailAddress": "TBDZ15896299@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-10-16T20:33:18.8Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15896299", - "projectId": { - "native": 15896299, - "partner": null - }, - "projectTypeId": { - "native": 34111, - "partner": null - }, - "clientId": { - "native": 43122010, - "partner": null - }, - "projectName": "TBD", - "phaseId": { - "native": 211957, - "partner": null - }, - "links": { - "self": "/projects/15896299", - "projectType": "/projecttypes/34111", - "rootFolder": "/folders/138011554", - "client": "/contacts/43122010", - "contacts": "/projects/15896299/contacts" - } - }, - { - "projectTypeCode": "EVICT", - "rootDocFolderId": { - "native": 137923183, - "partner": null - }, - "phaseName": "Default", - "phaseDate": "2025-10-22T18:03:38.6Z", - "clientName": "Bates Motel (Bates Motel Group, LLC)", - "clientPictureURL": "/images/Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", - "clientPictureKey": "Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", - "clientPictureS3Url": "", - "firstPrimaryName": "Sarra McDonald", - "firstPrimaryUsername": "sarra", - "isArchived": false, - "lastActivity": "2025-10-22T22:14:58.907Z", - "uniqueKey": "BatesMotelZ15892080", - "projectOrClientName": "Bates Motel (Bates Motel Group, LLC)", - "hashtags": [], - "orgId": 9227, - "projectEmailAddress": "BatesMotelZ15892080@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-10-13T21:54:29.187Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15892080", - "projectId": { - "native": 15892080, - "partner": null - }, - "projectTypeId": { - "native": 34111, - "partner": null - }, - "clientId": { - "native": 40576359, - "partner": null - }, - "projectName": "Bates Motel (Bates Motel Group, LLC)", - "phaseId": { - "native": 211435, - "partner": null - }, - "links": { - "self": "/projects/15892080", - "projectType": "/projecttypes/34111", - "rootFolder": "/folders/137923183", - "client": "/contacts/40576359", - "contacts": "/projects/15892080/contacts" - } - }, - { - "projectTypeCode": "EVICT", - "rootDocFolderId": { - "native": 128719223, - "partner": null - }, - "phaseName": "Trial Prep and Trial", - "phaseDate": "2025-10-22T21:40:11.117Z", + "phaseName": "Waiting for Answer", + "phaseDate": "2025-11-05T20:47:26.337Z", "clientName": "1234 Main Street Apartments (Main Street Property Holding LLC)", "clientPictureURL": "/images/avatar-user-placeholder.png", "clientPictureKey": "avatar-user-placeholder.png", "clientPictureS3Url": "", - "firstPrimaryName": "Sarra McDonald", - "firstPrimaryUsername": "sarra", + "firstPrimaryName": "Shayna Leatiota", + "firstPrimaryUsername": "shayna1", "isArchived": false, - "lastActivity": "2025-10-22T22:14:26.443Z", - "uniqueKey": "MainStreetApartmentsvSmithNTTZ12685677", - "projectOrClientName": "1234 Main Street Apartments v Smith, #24, NTT", - "hashtags": [ - "#Attorney-to-accept-service" - ], + "lastActivity": "2025-11-05T20:46:13.08Z", + "uniqueKey": "mainvJonesZ15974871", + "projectOrClientName": "99999 - Main Street Property Holding, LLC v. Amrosio, #24, NP", + "hashtags": [], "orgId": 9227, - "projectEmailAddress": "MainStreetApartmentsvSmithNTTZ12685677@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-06-17T01:07:55.873Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/12685677", + "projectEmailAddress": "mainvJonesZ15974871@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T23:16:06.507Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974871", "projectId": { - "native": 12685677, + "native": 15974871, "partner": null }, "projectTypeId": { @@ -296,44 +102,1772 @@ "native": 40637221, "partner": null }, - "projectName": "1234 Main Street Apartments v Smith, #24, NTT", + "projectName": "99999 - Main Street Property Holding, LLC v. Amrosio, #24, NP", "phaseId": { - "native": 211438, + "native": 209443, "partner": null }, "links": { - "self": "/projects/12685677", + "self": "/projects/15974871", "projectType": "/projecttypes/34111", - "rootFolder": "/folders/128719223", + "rootFolder": "/folders/138967726", "client": "/contacts/40637221", - "contacts": "/projects/12685677/contacts" + "contacts": "/projects/15974871/contacts" } }, { "projectTypeCode": "EVICT", "rootDocFolderId": { - "native": 128547693, + "native": 138955476, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-11-04T20:39:47.683Z", + "clientName": "Victorious Apartments", + "clientPictureURL": "/images/Defaultff580374-91e6-4276-a46e-fc6c57ed5b7e.png", + "clientPictureKey": "Defaultff580374-91e6-4276-a46e-fc6c57ed5b7e.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Lani", + "firstPrimaryUsername": "lani2", + "isArchived": false, + "lastActivity": "2025-11-04T20:39:47.687Z", + "uniqueKey": "VictoriaZ15974663", + "projectOrClientName": "Victoria", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "VictoriaZ15974663@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:39:47.683Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974663", + "projectId": { + "native": 15974663, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204059, + "partner": null + }, + "projectName": "Victoria", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15974663", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138955476", + "client": "/contacts/43204059", + "contacts": "/projects/15974663/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138955257, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-11-04T20:37:07.827Z", + "clientName": "Lena Rose", + "clientPictureURL": "/images/Defaulta81d7d27-39bb-488b-96bb-88bfe758e296.png", + "clientPictureKey": "Defaulta81d7d27-39bb-488b-96bb-88bfe758e296.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", + "isArchived": false, + "lastActivity": "2025-11-04T20:36:25.58Z", + "uniqueKey": "TestZ15974659", + "projectOrClientName": "Test 5", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TestZ15974659@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:36:25.577Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974659", + "projectId": { + "native": 15974659, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407962, + "partner": null + }, + "projectName": "Test 5", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15974659", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138955257", + "client": "/contacts/43407962", + "contacts": "/projects/15974659/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138955156, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-11-04T20:36:35.173Z", + "clientName": "938 Walnut Woods Drive SFH (David Yancey)", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Leah Marcus", + "firstPrimaryUsername": "leah21", + "isArchived": false, + "lastActivity": "2025-11-04T20:36:39.703Z", + "uniqueKey": "vPalafoxNPZ15974657", + "projectOrClientName": "938 Walnut Woods Drive SFH (David Yancey) v. Palafox, #938, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vPalafoxNPZ15974657@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:35:23.15Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974657", + "projectId": { + "native": 15974657, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407956, + "partner": null + }, + "projectName": "938 Walnut Woods Drive SFH (David Yancey) v. Palafox, #938, NP", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15974657", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138955156", + "client": "/contacts/43407956", + "contacts": "/projects/15974657/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138954942, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-11-04T20:30:50.46Z", + "clientName": "Golden Gate Village", + "clientPictureURL": "/images/Defaulte6b4ea5b-ede3-44e4-a1b9-b8c4fabe78d1.png", + "clientPictureKey": "Defaulte6b4ea5b-ede3-44e4-a1b9-b8c4fabe78d1.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Melissa Vincent", + "firstPrimaryUsername": "melissa110", + "isArchived": false, + "lastActivity": "2025-11-04T20:30:50.463Z", + "uniqueKey": "GoldenGateVillageZ15974650", + "projectOrClientName": "Golden Gate Village", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "GoldenGateVillageZ15974650@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:30:50.46Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974650", + "projectId": { + "native": 15974650, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407915, + "partner": null + }, + "projectName": "Golden Gate Village", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15974650", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138954942", + "client": "/contacts/43407915", + "contacts": "/projects/15974650/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138954131, + "partner": null + }, + "phaseName": "Service of Process", + "phaseDate": "2025-11-04T20:59:21.297Z", + "clientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)", + "clientPictureURL": "/images/Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", + "clientPictureKey": "Default2338c514-f475-4375-aaff-ebb3b1bc7c26.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-11-04T20:57:53.923Z", + "uniqueKey": "MuseumParkApartmentsZ15974631", + "projectOrClientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MuseumParkApartmentsZ15974631@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:20:15.383Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974631", + "projectId": { + "native": 15974631, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407853, + "partner": null + }, + "projectName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "phaseId": { + "native": 210761, + "partner": null + }, + "links": { + "self": "/projects/15974631", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138954131", + "client": "/contacts/43407853", + "contacts": "/projects/15974631/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138954102, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-11-04T20:20:02.02Z", + "clientName": "Bailey Apartment Complex", + "clientPictureURL": "/images/Defaultc71f9b7f-712b-45d9-aaac-976552a4ca38.png", + "clientPictureKey": "Defaultc71f9b7f-712b-45d9-aaac-976552a4ca38.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Stephanie Gonzalez", + "firstPrimaryUsername": "stephanie148", + "isArchived": false, + "lastActivity": "2025-11-04T20:20:02.02Z", + "uniqueKey": "BaileyApartmentComplexZ15974630", + "projectOrClientName": "Bailey Apartment Complex", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "BaileyApartmentComplexZ15974630@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:20:02.02Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974630", + "projectId": { + "native": 15974630, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43407823, + "partner": null + }, + "projectName": "Bailey Apartment Complex", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15974630", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138954102", + "client": "/contacts/43407823", + "contacts": "/projects/15974630/contacts" + } + }, + { + "projectTypeCode": "ADMIN", + "rootDocFolderId": { + "native": 138954012, + "partner": null + }, + "phaseName": "ADMIN", + "phaseDate": "2025-11-04T20:18:21.093Z", + "clientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC)", + "clientPictureURL": "/images/Default406dec60-7fa2-415b-9a12-cbcdae00aaa8.png", + "clientPictureKey": "Default406dec60-7fa2-415b-9a12-cbcdae00aaa8.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-11-04T20:18:21.093Z", + "uniqueKey": "MuseumParkApartmentsZ15974627", + "projectOrClientName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MuseumParkApartmentsZ15974627@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-04T20:18:21.093Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15974627", + "projectId": { + "native": 15974627, + "partner": null + }, + "projectTypeId": { + "native": 34112, + "partner": null + }, + "clientId": { + "native": 43407827, + "partner": null + }, + "projectName": "Museum Park Apartments (MUSEUM PARK PROPERTY LLC) v. Whelan, #7202, NP", + "phaseId": { + "native": 209445, + "partner": null + }, + "links": { + "self": "/projects/15974627", + "projectType": "/projecttypes/34112", + "rootFolder": "/folders/138954012", + "client": "/contacts/43407827", + "contacts": "/projects/15974627/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138854875, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-11-03T21:18:42.307Z", + "clientName": "Mickey Mouse", + "clientPictureURL": "/images/Defaulta68fd2ae-7c39-409e-9382-3b32a6dcb276.png", + "clientPictureKey": "Defaulta68fd2ae-7c39-409e-9382-3b32a6dcb276.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Chelsea Cawley", + "firstPrimaryUsername": "chelsea48", + "isArchived": false, + "lastActivity": "2025-11-03T21:18:42.333Z", + "uniqueKey": "MarALagoZ15973770", + "projectOrClientName": "Mar A Lago", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MarALagoZ15973770@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T21:18:42.307Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973770", + "projectId": { + "native": 15973770, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199372, + "partner": null + }, + "projectName": "Mar A Lago", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15973770", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138854875", + "client": "/contacts/43199372", + "contacts": "/projects/15973770/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138851697, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-11-05T20:05:14.357Z", + "clientName": "Fruitdale Apt (abc llc)", + "clientPictureURL": "/images/Default64f19134-e986-45cd-b0d7-9ca2168d9a73.png", + "clientPictureKey": "Default64f19134-e986-45cd-b0d7-9ca2168d9a73.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Sable Garcia", + "firstPrimaryUsername": "sable", + "isArchived": false, + "lastActivity": "2025-11-05T21:06:49.353Z", + "uniqueKey": "FruitdaleAptZ15973714", + "projectOrClientName": "Fruitdale Apt (abc llc) v. Taghvaei, #324, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "FruitdaleAptZ15973714@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:48:17.04Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973714", + "projectId": { + "native": 15973714, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43404567, + "partner": null + }, + "projectName": "Fruitdale Apt (abc llc) v. Taghvaei, #324, NP", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15973714", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138851697", + "client": "/contacts/43404567", + "contacts": "/projects/15973714/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138850520, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-11-03T20:40:34.917Z", + "clientName": "Ascent Apartments", + "clientPictureURL": "/images/Default5b4f74de-cd5e-47ab-9f13-9cdd68fa4323.png", + "clientPictureKey": "Default5b4f74de-cd5e-47ab-9f13-9cdd68fa4323.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Lani", + "firstPrimaryUsername": "lani2", + "isArchived": false, + "lastActivity": "2025-11-03T20:40:34.92Z", + "uniqueKey": "AscentApartmentsZ15973702", + "projectOrClientName": "03352-Ascent Apartments (St. Anton Multifamily Inc) v. Lewis, #1205, NP 25UD005639", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "AscentApartmentsZ15973702@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:40:34.917Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973702", + "projectId": { + "native": 15973702, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43404538, + "partner": null + }, + "projectName": "03352-Ascent Apartments (St. Anton Multifamily Inc) v. Lewis, #1205, NP 25UD005639", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15973702", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138850520", + "client": "/contacts/43404538", + "contacts": "/projects/15973702/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138849370, + "partner": null + }, + "phaseName": "Notice Preparation", + "phaseDate": "2025-11-03T20:53:45.64Z", + "clientName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC)", + "clientPictureURL": "/images/Defaultfedc8de1-63db-46a2-ac5f-2388f5cf11ca.png", + "clientPictureKey": "Defaultfedc8de1-63db-46a2-ac5f-2388f5cf11ca.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Leah Marcus", + "firstPrimaryUsername": "leah21", + "isArchived": false, + "lastActivity": "2025-11-03T20:53:55.593Z", + "uniqueKey": "vHarrisNPZ15973686", + "projectOrClientName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC) v. Harris, #308, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vHarrisNPZ15973686@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:33:13.877Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973686", + "projectId": { + "native": 15973686, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212561, + "partner": null + }, + "projectName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC) v. Harris, #308, NP", + "phaseId": { + "native": 209438, + "partner": null + }, + "links": { + "self": "/projects/15973686", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138849370", + "client": "/contacts/43212561", + "contacts": "/projects/15973686/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138848572, + "partner": null + }, + "phaseName": "Writ and Sheriff", + "phaseDate": "2025-11-04T20:26:49.983Z", + "clientName": "Westlakes Apartments", + "clientPictureURL": "/images/Default19fd6c58-a5c2-442c-8d5a-3005fd756568.png", + "clientPictureKey": "Default19fd6c58-a5c2-442c-8d5a-3005fd756568.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Viviana Garcia", + "firstPrimaryUsername": "viviana15", + "isArchived": false, + "lastActivity": "2025-11-04T20:26:34.927Z", + "uniqueKey": "WestlakeapartmentsvMartinezNPZ15973677", + "projectOrClientName": "Westlake apartments v. Martinez, #345, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "WestlakeapartmentsvMartinezNPZ15973677@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:28:12.68Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973677", + "projectId": { + "native": 15973677, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43206627, + "partner": null + }, + "projectName": "Westlake apartments v. Martinez, #345, NP", + "phaseId": { + "native": 211439, + "partner": null + }, + "links": { + "self": "/projects/15973677", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138848572", + "client": "/contacts/43206627", + "contacts": "/projects/15973677/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138848330, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-11-03T20:46:29.827Z", + "clientName": "The Vue (Sierra Ridge 3600 LLC)", + "clientPictureURL": "/images/Default54fc0416-f116-4fe0-8843-16ed99776cd6.png", + "clientPictureKey": "Default54fc0416-f116-4fe0-8843-16ed99776cd6.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-11-03T21:09:49.133Z", + "uniqueKey": "TheVueZ15973673", + "projectOrClientName": "The Vue (Sierra Ridge 3600 LLC) v Austin, #3106, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TheVueZ15973673@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:26:00.11Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973673", + "projectId": { + "native": 15973673, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43404424, + "partner": null + }, + "projectName": "The Vue (Sierra Ridge 3600 LLC) v Austin, #3106, NP", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15973673", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138848330", + "client": "/contacts/43404424", + "contacts": "/projects/15973673/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138848224, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-11-03T20:25:45.457Z", + "clientName": "3900 Adeline", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Melissa Vincent", + "firstPrimaryUsername": "melissa110", + "isArchived": false, + "lastActivity": "2025-11-03T20:40:08.273Z", + "uniqueKey": "AdelineZ15973672", + "projectOrClientName": "3900 Adeline", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "AdelineZ15973672@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:25:01.1Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973672", + "projectId": { + "native": 15973672, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43183162, + "partner": null + }, + "projectName": "3900 Adeline", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15973672", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138848224", + "client": "/contacts/43183162", + "contacts": "/projects/15973672/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138847705, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-11-03T21:09:33.133Z", + "clientName": "Heritage Park Apartments (Monument 3: Realty Fund VIII, LTD., A California Limited Partnership)", + "clientPictureURL": "/images/Defaultafefa969-8256-45df-a96b-14ca2a1f8be3.png", + "clientPictureKey": "Defaultafefa969-8256-45df-a96b-14ca2a1f8be3.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", + "isArchived": false, + "lastActivity": "2025-11-03T20:22:06.523Z", + "uniqueKey": "ProjectZ15973665", + "projectOrClientName": "Project 4", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "ProjectZ15973665@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-11-03T20:22:06.52Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15973665", + "projectId": { + "native": 15973665, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43404397, + "partner": null + }, + "projectName": "Project 4", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15973665", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138847705", + "client": "/contacts/43404397", + "contacts": "/projects/15973665/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138537199, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-11-03T19:19:31.953Z", + "clientName": "Woodland Park Communities", + "clientPictureURL": "/images/Defaultf53af6b9-9836-4dc1-b783-6b703a912d5d.png", + "clientPictureKey": "Defaultf53af6b9-9836-4dc1-b783-6b703a912d5d.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Monica Alvarez", + "firstPrimaryUsername": "monica57", + "isArchived": false, + "lastActivity": "2025-11-03T19:19:55.557Z", + "uniqueKey": "WoodlandParkvSpearsZ15919029", + "projectOrClientName": "Woodland Park v. Barto", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "WoodlandParkvSpearsZ15919029@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-31T23:16:22.883Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15919029", + "projectId": { + "native": 15919029, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43229598, + "partner": null + }, + "projectName": "Woodland Park v. Barto", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15919029", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138537199", + "client": "/contacts/43229598", + "contacts": "/projects/15919029/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138512713, "partner": null }, "phaseName": "Notice Pending", - "phaseDate": "2025-10-21T00:21:07.603Z", + "phaseDate": "2025-10-30T22:04:54.433Z", + "clientName": "Clio LLC", + "clientPictureURL": "/images/Default0d130ce8-c012-4f04-b9fa-b8c83b6ba679.png", + "clientPictureKey": "Default0d130ce8-c012-4f04-b9fa-b8c83b6ba679.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Samar Joseph", + "firstPrimaryUsername": "samar", + "isArchived": false, + "lastActivity": "2025-11-03T19:29:29.217Z", + "uniqueKey": "ClioLLCvFileVineZ15917014", + "projectOrClientName": "Clio LLC v. File Vine", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "ClioLLCvFileVineZ15917014@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-30T21:53:38.893Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15917014", + "projectId": { + "native": 15917014, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43220018, + "partner": null + }, + "projectName": "Clio LLC v. File Vine", + "phaseId": { + "native": 209439, + "partner": null + }, + "links": { + "self": "/projects/15917014", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138512713", + "client": "/contacts/43220018", + "contacts": "/projects/15917014/contacts" + } + }, + { + "projectTypeCode": "ADMIN", + "rootDocFolderId": { + "native": 138467706, + "partner": null + }, + "phaseName": "ADMIN", + "phaseDate": "2025-10-29T13:17:31.857Z", + "clientName": "Rothbard Law Group, LLP", + "clientPictureURL": "/images/Default0f972418-994a-47ec-903d-e98551efaa87.png", + "clientPictureKey": "Default0f972418-994a-47ec-903d-e98551efaa87.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Brian Skarbek", + "firstPrimaryUsername": "brianskarbek", + "isArchived": false, + "lastActivity": "2025-10-29T13:55:26.95Z", + "uniqueKey": "TrashZ15915254", + "projectOrClientName": "Trash", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TrashZ15915254@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-29T13:17:31.857Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15915254", + "projectId": { + "native": 15915254, + "partner": null + }, + "projectTypeId": { + "native": 34112, + "partner": null + }, + "clientId": { + "native": 43213961, + "partner": null + }, + "projectName": "Trash", + "phaseId": { + "native": 209445, + "partner": null + }, + "links": { + "self": "/projects/15915254", + "projectType": "/projecttypes/34112", + "rootFolder": "/folders/138467706", + "client": "/contacts/43213961", + "contacts": "/projects/15915254/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138456245, + "partner": null + }, + "phaseName": "Trial Prep and Trial", + "phaseDate": "2025-11-03T02:11:11.893Z", + "clientName": "Marsh Creek Apartments", + "clientPictureURL": "/images/Defaultc30ce056-c6ec-4867-b39d-363036743b87.png", + "clientPictureKey": "Defaultc30ce056-c6ec-4867-b39d-363036743b87.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Lani", + "firstPrimaryUsername": "lani2", + "isArchived": false, + "lastActivity": "2025-10-30T19:13:49.457Z", + "uniqueKey": "vHerreraNPPSZ15914835", + "projectOrClientName": "02532-Marsh Creek Apartments (Cascade Housing Association) v. Raya #210 NP, PS25-0500", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vHerreraNPPSZ15914835@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:44:40.873Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914835", + "projectId": { + "native": 15914835, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212576, + "partner": null + }, + "projectName": "02532-Marsh Creek Apartments (Cascade Housing Association) v. Raya #210 NP, PS25-0500", + "phaseId": { + "native": 211438, + "partner": null + }, + "links": { + "self": "/projects/15914835", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138456245", + "client": "/contacts/43212576", + "contacts": "/projects/15914835/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138456173, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-10-28T19:48:35.963Z", + "clientName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC)", + "clientPictureURL": "/images/Defaultfedc8de1-63db-46a2-ac5f-2388f5cf11ca.png", + "clientPictureKey": "Defaultfedc8de1-63db-46a2-ac5f-2388f5cf11ca.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Kalyani Natarajan", + "firstPrimaryUsername": "kalyani1", + "isArchived": false, + "lastActivity": "2025-10-28T19:42:51.98Z", + "uniqueKey": "WestlakeApartmentsZ15914832", + "projectOrClientName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC)", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "WestlakeApartmentsZ15914832@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:42:51.98Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914832", + "projectId": { + "native": 15914832, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212561, + "partner": null + }, + "projectName": "Westlake Apartments (CP VIII WESTLAKE OWNER 3, LLC)", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15914832", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138456173", + "client": "/contacts/43212561", + "contacts": "/projects/15914832/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455933, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-28T19:34:39.607Z", + "clientName": "]Willow Glen West Associates LTD", + "clientPictureURL": "/images/Default1341b5cc-3347-4799-9c54-2b281c0513d2.png", + "clientPictureKey": "Default1341b5cc-3347-4799-9c54-2b281c0513d2.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", + "isArchived": false, + "lastActivity": "2025-10-28T19:34:39.647Z", + "uniqueKey": "TestZ15914821", + "projectOrClientName": "Test 3", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TestZ15914821@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:34:39.607Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914821", + "projectId": { + "native": 15914821, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212510, + "partner": null + }, + "projectName": "Test 3", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15914821", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455933", + "client": "/contacts/43212510", + "contacts": "/projects/15914821/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455907, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-28T19:40:50.087Z", + "clientName": "South Shore Apartments (Alameda Multifamily Owner LLC)", + "clientPictureURL": "/images/Default8139f4ab-59e7-4000-93cf-9907b1d14c95.png", + "clientPictureKey": "Default8139f4ab-59e7-4000-93cf-9907b1d14c95.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Sable Garcia", + "firstPrimaryUsername": "sable", + "isArchived": false, + "lastActivity": "2025-10-28T19:53:55.077Z", + "uniqueKey": "vGungaaENPZ15914818", + "projectOrClientName": "v. Gungaa, #E313, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vGungaaENPZ15914818@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:34:15.373Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914818", + "projectId": { + "native": 15914818, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212454, + "partner": null + }, + "projectName": "v. Gungaa, #E313, NP", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15914818", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455907", + "client": "/contacts/43212454", + "contacts": "/projects/15914818/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455745, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-11-04T20:23:25.697Z", + "clientName": "36 Edgewood Road (DEMIGUEL & JOHNSON, LLC)", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Leah Marcus", + "firstPrimaryUsername": "leah21", + "isArchived": false, + "lastActivity": "2025-11-03T20:30:33.247Z", + "uniqueKey": "vBadilloNPZ15914809", + "projectOrClientName": "36 Edgewood Road (DEMIGUEL & JOHNSON, LLC) v. Badillo, #3, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vBadilloNPZ15914809@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:28:47.173Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914809", + "projectId": { + "native": 15914809, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212468, + "partner": null + }, + "projectName": "36 Edgewood Road (DEMIGUEL & JOHNSON, LLC) v. Badillo, #3, NP", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15914809", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455745", + "client": "/contacts/43212468", + "contacts": "/projects/15914809/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455742, + "partner": null + }, + "phaseName": "Writ and Sheriff", + "phaseDate": "2025-11-03T21:14:58.593Z", + "clientName": "Westlake Apartments VIII Westlake Owner 4, LLC", + "clientPictureURL": "/images/Default31bd4650-7c78-498f-8e9e-f2c59d1dd83c.png", + "clientPictureKey": "Default31bd4650-7c78-498f-8e9e-f2c59d1dd83c.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Tatiana Drozdova", + "firstPrimaryUsername": "tatiana14", + "isArchived": false, + "lastActivity": "2025-11-05T21:10:44.693Z", + "uniqueKey": "vBarahonaUnitNPZ15914808", + "projectOrClientName": "v. Barahona, Unit #124, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vBarahonaUnitNPZ15914808@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:28:45.237Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914808", + "projectId": { + "native": 15914808, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212470, + "partner": null + }, + "projectName": "v. Barahona, Unit #124, NP", + "phaseId": { + "native": 211439, + "partner": null + }, + "links": { + "self": "/projects/15914808", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455742", + "client": "/contacts/43212470", + "contacts": "/projects/15914808/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455657, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-28T20:21:54.23Z", + "clientName": "Fernando Conde", + "clientPictureURL": "/images/Defaultd8c40e18-00a4-4297-8aa7-ab069ea84a2b.png", + "clientPictureKey": "Defaultd8c40e18-00a4-4297-8aa7-ab069ea84a2b.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", + "isArchived": false, + "lastActivity": "2025-10-28T19:27:14.603Z", + "uniqueKey": "TestZ15914802", + "projectOrClientName": "Test 3", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TestZ15914802@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:27:14.6Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914802", + "projectId": { + "native": 15914802, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212456, + "partner": null + }, + "projectName": "Test 3", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15914802", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455657", + "client": "/contacts/43212456", + "contacts": "/projects/15914802/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455514, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-29T13:53:10.987Z", + "clientName": "Westlake Apartments (CP VIII Westlake Owner 1, LLC)", + "clientPictureURL": "/images/Defaultfef57d55-eae3-4270-aab4-0dfedd842e89.png", + "clientPictureKey": "Defaultfef57d55-eae3-4270-aab4-0dfedd842e89.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Ariadna Kench", + "firstPrimaryUsername": "ariadna", + "isArchived": false, + "lastActivity": "2025-11-03T20:17:29.223Z", + "uniqueKey": "WestlakeApartmentsvTurnerZ15914796", + "projectOrClientName": "Westlake Apartments v. Turner", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "WestlakeApartmentsvTurnerZ15914796@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:24:20.017Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914796", + "projectId": { + "native": 15914796, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199353, + "partner": null + }, + "projectName": "Westlake Apartments v. Turner", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15914796", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455514", + "client": "/contacts/43199353", + "contacts": "/projects/15914796/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455409, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-28T19:34:48.627Z", + "clientName": "Annadel Apartments (California Community Housing Agency)", + "clientPictureURL": "/images/Defaultda78fb13-f512-46c9-ba6f-092f2168d2ad.png", + "clientPictureKey": "Defaultda78fb13-f512-46c9-ba6f-092f2168d2ad.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Melissa Vincent", + "firstPrimaryUsername": "melissa110", + "isArchived": false, + "lastActivity": "2025-10-28T19:28:44.053Z", + "uniqueKey": "AnnadelApartmentsZ15914792", + "projectOrClientName": "Annadel Apartments (California Community Housing Agency)", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "AnnadelApartmentsZ15914792@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:21:51.39Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914792", + "projectId": { + "native": 15914792, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212411, + "partner": null + }, + "projectName": "Annadel Apartments (California Community Housing Agency)", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15914792", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455409", + "client": "/contacts/43212411", + "contacts": "/projects/15914792/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138455397, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-10-28T19:54:27.04Z", + "clientName": "Markham Plaza II (Markham Plaza II, LP)", + "clientPictureURL": "/images/Default47f1785d-709a-4cac-9c27-a4a992284b92.png", + "clientPictureKey": "Default47f1785d-709a-4cac-9c27-a4a992284b92.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-11-03T21:11:54.063Z", + "uniqueKey": "MarkhamPlazaIIZ15914790", + "projectOrClientName": "Markham Plaza II (Markham Plaza II, LP) v. Ford, #217, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MarkhamPlazaIIZ15914790@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-28T19:21:06.38Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15914790", + "projectId": { + "native": 15914790, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43212401, + "partner": null + }, + "projectName": "Markham Plaza II (Markham Plaza II, LP) v. Ford, #217, NP", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15914790", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138455397", + "client": "/contacts/43212401", + "contacts": "/projects/15914790/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138395872, + "partner": null + }, + "phaseName": "Archived", + "phaseDate": "2025-10-29T20:07:21.25Z", + "clientName": "1234 Main Street Apartments (Main Street Property Holding LLC)", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Shayna Leatiota", + "firstPrimaryUsername": "shayna1", + "isArchived": true, + "lastActivity": "2025-10-29T20:04:16.493Z", + "uniqueKey": "MainStreetApartmentsZ15912937", + "projectOrClientName": "1234 Main Street Apartments (Main Street Property Holding LLC) v. Schmucl, #1, NP, 25CV123456", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MainStreetApartmentsZ15912937@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-27T18:31:24.873Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15912937", + "projectId": { + "native": 15912937, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 40637221, + "partner": null + }, + "projectName": "1234 Main Street Apartments (Main Street Property Holding LLC) v. Schmucl, #1, NP, 25CV123456", + "phaseId": { + "native": 209444, + "partner": null + }, + "links": { + "self": "/projects/15912937", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138395872", + "client": "/contacts/40637221", + "contacts": "/projects/15912937/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138389484, + "partner": null + }, + "phaseName": "Trial Prep and Trial", + "phaseDate": "2025-10-29T18:43:19.197Z", + "clientName": "Great America", + "clientPictureURL": "/images/Default4e04d16b-6509-45f8-a934-7959603dc411.png", + "clientPictureKey": "Default4e04d16b-6509-45f8-a934-7959603dc411.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vaisuria Sua", + "firstPrimaryUsername": "vaisuria", + "isArchived": false, + "lastActivity": "2025-11-02T18:31:31.76Z", + "uniqueKey": "GreatAmericavTonyHawkZ15911320", + "projectOrClientName": "Great America v. Tony Hawk", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "GreatAmericavTonyHawkZ15911320@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-27T16:40:44.09Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15911320", + "projectId": { + "native": 15911320, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43208011, + "partner": null + }, + "projectName": "Great America v. Tony Hawk", + "phaseId": { + "native": 211438, + "partner": null + }, + "links": { + "self": "/projects/15911320", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138389484", + "client": "/contacts/43208011", + "contacts": "/projects/15911320/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138371997, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-26T06:42:02.147Z", + "clientName": "Westlakes Apartments", + "clientPictureURL": "/images/Default19fd6c58-a5c2-442c-8d5a-3005fd756568.png", + "clientPictureKey": "Default19fd6c58-a5c2-442c-8d5a-3005fd756568.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Kalyani Natarajan", + "firstPrimaryUsername": "kalyani1", + "isArchived": false, + "lastActivity": "2025-10-26T06:42:02.15Z", + "uniqueKey": "WestlakesApartmentsZ15910738", + "projectOrClientName": "Westlakes Apartments", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "WestlakesApartmentsZ15910738@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-26T06:42:02.147Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15910738", + "projectId": { + "native": 15910738, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43206627, + "partner": null + }, + "projectName": "Westlakes Apartments", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15910738", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138371997", + "client": "/contacts/43206627", + "contacts": "/projects/15910738/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138294575, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:28:30.537Z", + "clientName": "xcbzc", + "clientPictureURL": "/images/Default16109c48-dba3-45e7-9a27-05de556a4016.png", + "clientPictureKey": "Default16109c48-dba3-45e7-9a27-05de556a4016.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Nicholas Wang", + "firstPrimaryUsername": "nicholas31", + "isArchived": false, + "lastActivity": "2025-10-24T19:28:30.537Z", + "uniqueKey": "dfzdZ15909139", + "projectOrClientName": "dfzd", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "dfzdZ15909139@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:28:30.537Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909139", + "projectId": { + "native": 15909139, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204158, + "partner": null + }, + "projectName": "dfzd", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15909139", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138294575", + "client": "/contacts/43204158", + "contacts": "/projects/15909139/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138294038, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:18:36.63Z", + "clientName": "Bayside Apartments (Sunnyview 530, LLC)", + "clientPictureURL": "/images/Default5fd5385a-a83b-4b7a-bff4-99045352a7ab.png", + "clientPictureKey": "Default5fd5385a-a83b-4b7a-bff4-99045352a7ab.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Lani", + "firstPrimaryUsername": "lani2", + "isArchived": false, + "lastActivity": "2025-10-24T19:18:36.63Z", + "uniqueKey": "BaysideApartmentsZ15909121", + "projectOrClientName": "Bayside Apartments (Sunnyview 530, LLC) v. Garcia, #302, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "BaysideApartmentsZ15909121@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:18:36.63Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909121", + "projectId": { + "native": 15909121, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199343, + "partner": null + }, + "projectName": "Bayside Apartments (Sunnyview 530, LLC) v. Garcia, #302, NP", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15909121", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138294038", + "client": "/contacts/43199343", + "contacts": "/projects/15909121/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138293867, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:15:30.697Z", + "clientName": "Victorious Apartments", + "clientPictureURL": "/images/Defaultff580374-91e6-4276-a46e-fc6c57ed5b7e.png", + "clientPictureKey": "Defaultff580374-91e6-4276-a46e-fc6c57ed5b7e.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Ariadna Kench", + "firstPrimaryUsername": "ariadna", + "isArchived": false, + "lastActivity": "2025-10-24T19:15:30.697Z", + "uniqueKey": "VictoriousApartmentsvVegaZ15909115", + "projectOrClientName": "Victorious Apartments v. Papoi", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "VictoriousApartmentsvVegaZ15909115@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:15:30.697Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909115", + "projectId": { + "native": 15909115, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204059, + "partner": null + }, + "projectName": "Victorious Apartments v. Papoi", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15909115", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138293867", + "client": "/contacts/43204059", + "contacts": "/projects/15909115/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138293751, + "partner": null + }, + "phaseName": "Stipulation Expired", + "phaseDate": "2025-10-24T19:48:05.45Z", + "clientName": "Marvel Studios, LLC", + "clientPictureURL": "/images/Default7cf09776-e43c-47ae-9ed0-0932aa9aa29f.png", + "clientPictureKey": "Default7cf09776-e43c-47ae-9ed0-0932aa9aa29f.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Monica Alvarez", + "firstPrimaryUsername": "monica57", + "isArchived": false, + "lastActivity": "2025-10-31T23:08:33.427Z", + "uniqueKey": "MarvelStudiosLLCZ15909109", + "projectOrClientName": "Marvel Studios, LLC v. Captain America", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "MarvelStudiosLLCZ15909109@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:08:18.743Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909109", + "projectId": { + "native": 15909109, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204034, + "partner": null + }, + "projectName": "Marvel Studios, LLC v. Captain America", + "phaseId": { + "native": 211443, + "partner": null + }, + "links": { + "self": "/projects/15909109", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138293751", + "client": "/contacts/43204034", + "contacts": "/projects/15909109/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138293668, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:05:26.23Z", + "clientName": "Edgewater Apartments (Nima Gabbay)", + "clientPictureURL": "/images/Default0f83f564-605f-4104-b04d-0bb7cb734b90.png", + "clientPictureKey": "Default0f83f564-605f-4104-b04d-0bb7cb734b90.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Michele Le", + "firstPrimaryUsername": "michelle601", + "isArchived": false, + "lastActivity": "2025-10-24T19:05:26.233Z", + "uniqueKey": "EdgewaterApartmentsZ15909105", + "projectOrClientName": "Edgewater Apartments (Nima Gabbay) v. Moore, #18, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "EdgewaterApartmentsZ15909105@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:05:26.23Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909105", + "projectId": { + "native": 15909105, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204013, + "partner": null + }, + "projectName": "Edgewater Apartments (Nima Gabbay) v. Moore, #18, NP", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15909105", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138293668", + "client": "/contacts/43204013", + "contacts": "/projects/15909105/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138293640, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:05:03.537Z", "clientName": "Bates Motel (Bates Motel Group, LLC)", "clientPictureURL": "/images/Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", "clientPictureKey": "Defaultf3f74f0b-0eee-4a40-98f1-57960d87f12a.png", "clientPictureS3Url": "", - "firstPrimaryName": "Jen Rhodes", - "firstPrimaryUsername": "jen60", + "firstPrimaryName": "Sophia Rogers", + "firstPrimaryUsername": "sophia17", "isArchived": false, - "lastActivity": "2025-10-21T00:07:49.373Z", - "uniqueKey": "BatesMotelVsTenantNameZ12662539", - "projectOrClientName": "Bates Motel Vs. Tenant Name 25CV123456", + "lastActivity": "2025-10-24T19:05:03.537Z", + "uniqueKey": "vDingmanNTCZ15909103", + "projectOrClientName": "v. Dingman, #45, NTC", "hashtags": [], "orgId": 9227, - "projectEmailAddress": "BatesMotelVsTenantNameZ12662539@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-06-06T02:48:45.96Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/12662539", + "projectEmailAddress": "vDingmanNTCZ15909103@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:05:03.537Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909103", "projectId": { - "native": 12662539, + "native": 15909103, "partner": null }, "projectTypeId": { @@ -344,44 +1878,380 @@ "native": 40576359, "partner": null }, - "projectName": "Bates Motel Vs. Tenant Name 25CV123456", + "projectName": "v. Dingman, #45, NTC", "phaseId": { - "native": 209439, + "native": 211957, "partner": null }, "links": { - "self": "/projects/12662539", + "self": "/projects/15909103", "projectType": "/projecttypes/34111", - "rootFolder": "/folders/128547693", + "rootFolder": "/folders/138293640", "client": "/contacts/40576359", - "contacts": "/projects/12662539/contacts" + "contacts": "/projects/15909103/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138293620, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-24T19:04:16.06Z", + "clientName": "Plaza Club Apartments", + "clientPictureURL": "/images/Default6d2fcda9-f3ac-48c1-a65d-bec15dfebad6.png", + "clientPictureKey": "Default6d2fcda9-f3ac-48c1-a65d-bec15dfebad6.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Vivian Chan", + "firstPrimaryUsername": "bickying", + "isArchived": false, + "lastActivity": "2025-10-24T19:04:16.063Z", + "uniqueKey": "TestZ15909101", + "projectOrClientName": "Test 2", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "TestZ15909101@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-24T19:04:16.06Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15909101", + "projectId": { + "native": 15909101, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43204008, + "partner": null + }, + "projectName": "Test 2", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15909101", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138293620", + "client": "/contacts/43204008", + "contacts": "/projects/15909101/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138277761, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-23T23:36:52.593Z", + "clientName": "Busy Business", + "clientPictureURL": "/images/Default61f54fd5-e9f4-4a8a-9458-80612d3ec2a9.png", + "clientPictureKey": "Default61f54fd5-e9f4-4a8a-9458-80612d3ec2a9.png", + "clientPictureS3Url": "", + "firstPrimaryName": "David Kanter", + "firstPrimaryUsername": "davidkanter", + "isArchived": false, + "lastActivity": "2025-10-24T19:19:40.233Z", + "uniqueKey": "BusyBusinessvLackadaisicalLarryZ15907228", + "projectOrClientName": "Busy Business v. Lacksadaisical Larry", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "BusyBusinessvLackadaisicalLarryZ15907228@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T23:36:52.593Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15907228", + "projectId": { + "native": 15907228, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43200037, + "partner": null + }, + "projectName": "Busy Business v. Lacksadaisical Larry", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15907228", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138277761", + "client": "/contacts/43200037", + "contacts": "/projects/15907228/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138273634, + "partner": null + }, + "phaseName": "Preparing and Filing UD", + "phaseDate": "2025-10-23T20:43:07.933Z", + "clientName": "fghrth wrht wrth", + "clientPictureURL": "/images/Default04a50af5-74ed-44a4-bb27-487b96a26953.png", + "clientPictureKey": "Default04a50af5-74ed-44a4-bb27-487b96a26953.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Sophia Rogers", + "firstPrimaryUsername": "sophia17", + "isArchived": false, + "lastActivity": "2025-10-23T21:42:44.11Z", + "uniqueKey": "ttZ15907026", + "projectOrClientName": "2`3t`2t`", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "ttZ15907026@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:31:36.793Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15907026", + "projectId": { + "native": 15907026, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199481, + "partner": null + }, + "projectName": "2`3t`2t`", + "phaseId": { + "native": 209442, + "partner": null + }, + "links": { + "self": "/projects/15907026", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138273634", + "client": "/contacts/43199481", + "contacts": "/projects/15907026/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138273356, + "partner": null + }, + "phaseName": "Lockout Pending", + "phaseDate": "2025-11-04T06:17:08.537Z", + "clientName": "Delta View Family Apartments", + "clientPictureURL": "/images/Defaulta092d0f7-158e-48c2-b3c5-9c408562b34b.png", + "clientPictureKey": "Defaulta092d0f7-158e-48c2-b3c5-9c408562b34b.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Viviana Garcia", + "firstPrimaryUsername": "viviana15", + "isArchived": false, + "lastActivity": "2025-11-03T20:22:09.44Z", + "uniqueKey": "vAlonsoZ15907017", + "projectOrClientName": "v. Alonso", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vAlonsoZ15907017@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:25:30.08Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15907017", + "projectId": { + "native": 15907017, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199439, + "partner": null + }, + "projectName": "v. Alonso", + "phaseId": { + "native": 211440, + "partner": null + }, + "links": { + "self": "/projects/15907017", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138273356", + "client": "/contacts/43199439", + "contacts": "/projects/15907017/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138273278, + "partner": null + }, + "phaseName": "Archived", + "phaseDate": "2025-10-27T15:57:11.98Z", + "clientName": "1234 Main Street (David Kanter)", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Sophia Rogers", + "firstPrimaryUsername": "sophia17", + "isArchived": true, + "lastActivity": "2025-10-27T15:57:04.693Z", + "uniqueKey": "DavidTestZ15907012", + "projectOrClientName": "David Test", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "DavidTestZ15907012@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:21:30.447Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15907012", + "projectId": { + "native": 15907012, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199314, + "partner": null + }, + "projectName": "David Test", + "phaseId": { + "native": 209444, + "partner": null + }, + "links": { + "self": "/projects/15907012", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138273278", + "client": "/contacts/43199314", + "contacts": "/projects/15907012/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138273133, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-23T20:30:48.523Z", + "clientName": "1207-1233 University Avenue (Purisma Two, LLC )", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Sable Garcia", + "firstPrimaryUsername": "sable", + "isArchived": false, + "lastActivity": "2025-10-28T20:22:05.947Z", + "uniqueKey": "vKellyBNPZ15907005", + "projectOrClientName": "v. Kelly, #B, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vKellyBNPZ15907005@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:16:58.667Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15907005", + "projectId": { + "native": 15907005, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199400, + "partner": null + }, + "projectName": "v. Kelly, #B, NP", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15907005", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138273133", + "client": "/contacts/43199400", + "contacts": "/projects/15907005/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138272724, + "partner": null + }, + "phaseName": "Service of Process", + "phaseDate": "2025-11-04T20:26:06.313Z", + "clientName": "Bikini Bottom", + "clientPictureURL": "/images/Default8d6bd593-238b-4132-b4b4-abdfb81c620c.png", + "clientPictureKey": "Default8d6bd593-238b-4132-b4b4-abdfb81c620c.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Maya Jimenez", + "firstPrimaryUsername": "maya10", + "isArchived": false, + "lastActivity": "2025-11-04T20:27:39.293Z", + "uniqueKey": "BikiniBottomvPatrickStarZ15906992", + "projectOrClientName": "Bikini Bottom v. Patrick", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "BikiniBottomvPatrickStarZ15906992@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:09:29.633Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15906992", + "projectId": { + "native": 15906992, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199359, + "partner": null + }, + "projectName": "Bikini Bottom v. Patrick", + "phaseId": { + "native": 210761, + "partner": null + }, + "links": { + "self": "/projects/15906992", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138272724", + "client": "/contacts/43199359", + "contacts": "/projects/15906992/contacts" } }, { "projectTypeCode": "ADMIN", "rootDocFolderId": { - "native": 128547692, + "native": 138272722, "partner": null }, - "phaseName": "ADMIN", - "phaseDate": "2025-06-06T02:47:33.87Z", - "clientName": "Admin", - "clientPictureURL": "/images/c8711333-fad7-40f3-81fb-2853b8a7e082.png", - "clientPictureKey": "c8711333-fad7-40f3-81fb-2853b8a7e082.png", + "phaseName": "Archived", + "phaseDate": "2025-10-23T20:27:38.267Z", + "clientName": "Dale Cooper", + "clientPictureURL": "/images/Defaultc4bb8dd9-0195-4e7f-80a0-8ab241b4b2ff.png", + "clientPictureKey": "Defaultc4bb8dd9-0195-4e7f-80a0-8ab241b4b2ff.png", "clientPictureS3Url": "", - "firstPrimaryName": "Jen Rhodes", - "firstPrimaryUsername": "jen60", - "isArchived": false, - "lastActivity": "2025-06-06T02:47:33.873Z", - "uniqueKey": "VineskillsTrainingandResourcesProjectZ12662538", - "projectOrClientName": "Vineskills | Training and Resources Project", + "firstPrimaryName": "Lily Jalalian", + "firstPrimaryUsername": "lilypad007", + "isArchived": true, + "lastActivity": "2025-10-23T20:09:13.03Z", + "uniqueKey": "TwinPeaksvBOBZ15906991", + "projectOrClientName": "Twin Peaks v. BOB", "hashtags": [], "orgId": 9227, - "projectEmailAddress": "VineskillsTrainingandResourcesProjectZ12662538@rothbardlawgroup.filevineapp.com", - "createdDate": "2025-06-06T02:47:33.87Z", - "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/12662538", + "projectEmailAddress": "TwinPeaksvBOBZ15906991@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:09:13.027Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15906991", "projectId": { - "native": 12662538, + "native": 15906991, "partner": null }, "projectTypeId": { @@ -389,31 +2259,175 @@ "partner": null }, "clientId": { - "native": 40576358, + "native": 43199358, "partner": null }, - "projectName": "Vineskills | Training and Resources Project", + "projectName": "Twin Peaks v. BOB", "phaseId": { - "native": 209445, + "native": 209446, "partner": null }, "links": { - "self": "/projects/12662538", + "self": "/projects/15906991", "projectType": "/projecttypes/34112", - "rootFolder": "/folders/128547692", - "client": "/contacts/40576358", - "contacts": "/projects/12662538/contacts" + "rootFolder": "/folders/138272722", + "client": "/contacts/43199358", + "contacts": "/projects/15906991/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138272712, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-23T20:18:16.89Z", + "clientName": "Westlake Apartments (CP VIII Westlake Owner 1, LLC)", + "clientPictureURL": "/images/Defaultfef57d55-eae3-4270-aab4-0dfedd842e89.png", + "clientPictureKey": "Defaultfef57d55-eae3-4270-aab4-0dfedd842e89.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Tatiana Drozdova", + "firstPrimaryUsername": "tatiana14", + "isArchived": false, + "lastActivity": "2025-10-27T21:21:38.117Z", + "uniqueKey": "vRojasNPZ15906990", + "projectOrClientName": "v. Rojas, #23, NP", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "vRojasNPZ15906990@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:09:06.663Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15906990", + "projectId": { + "native": 15906990, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199353, + "partner": null + }, + "projectName": "v. Rojas, #23, NP", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15906990", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138272712", + "client": "/contacts/43199353", + "contacts": "/projects/15906990/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138272673, + "partner": null + }, + "phaseName": "Migrated", + "phaseDate": "2025-10-23T20:07:48.687Z", + "clientName": "13 Cornelia Street Apartments", + "clientPictureURL": "/images/avatar-user-placeholder.png", + "clientPictureKey": "avatar-user-placeholder.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Ariadna Kench", + "firstPrimaryUsername": "ariadna", + "isArchived": false, + "lastActivity": "2025-10-23T20:07:48.69Z", + "uniqueKey": "CorneliaStreetApartmentsvKelceZ15906988", + "projectOrClientName": "13 Cornelia Street Apartments v. Alwyn", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "CorneliaStreetApartmentsvKelceZ15906988@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:07:48.687Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15906988", + "projectId": { + "native": 15906988, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199352, + "partner": null + }, + "projectName": "13 Cornelia Street Apartments v. Alwyn", + "phaseId": { + "native": 211957, + "partner": null + }, + "links": { + "self": "/projects/15906988", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138272673", + "client": "/contacts/43199352", + "contacts": "/projects/15906988/contacts" + } + }, + { + "projectTypeCode": "EVICT", + "rootDocFolderId": { + "native": 138272662, + "partner": null + }, + "phaseName": "Nonpayment File Review", + "phaseDate": "2025-10-24T19:20:59.313Z", + "clientName": "Sunshine Sharp", + "clientPictureURL": "/images/Defaulte1a7b75e-8898-4c97-aecd-5820b28b19ce.png", + "clientPictureKey": "Defaulte1a7b75e-8898-4c97-aecd-5820b28b19ce.png", + "clientPictureS3Url": "", + "firstPrimaryName": "Chelsea Cawley", + "firstPrimaryUsername": "chelsea48", + "isArchived": false, + "lastActivity": "2025-10-23T20:08:24.39Z", + "uniqueKey": "SharpEvictionsZ15906987", + "projectOrClientName": "Sharp Evictions", + "hashtags": [], + "orgId": 9227, + "projectEmailAddress": "SharpEvictionsZ15906987@rothbardlawgroup.filevineapp.com", + "createdDate": "2025-10-23T20:07:28.263Z", + "projectUrl": "https://rothbardlawgroup.filevineapp.com/#/project/15906987", + "projectId": { + "native": 15906987, + "partner": null + }, + "projectTypeId": { + "native": 34111, + "partner": null + }, + "clientId": { + "native": 43199350, + "partner": null + }, + "projectName": "Sharp Evictions", + "phaseId": { + "native": 209436, + "partner": null + }, + "links": { + "self": "/projects/15906987", + "projectType": "/projecttypes/34111", + "rootFolder": "/folders/138272662", + "client": "/contacts/43199350", + "contacts": "/projects/15906987/contacts" } } ], "links": { "self": "/projects?name=&number=&createdSince=&searchterm=&projectId=&incidentDate=&hashtags=&offset=0&limit=50&requestedFields=*", "prev": null, - "next": null + "next": "/projects?name=&number=&createdSince=&searchterm=&projectId=&incidentDate=&hashtags=&offset=50&limit=50&requestedFields=*" } }, "headers": { - "Date": "Thu, 23 Oct 2025 00:21:15 GMT", + "Date": "Wed, 05 Nov 2025 21:28:30 GMT", "Content-Type": "application/json; charset=utf-8", "Transfer-Encoding": "chunked", "Connection": "keep-alive", @@ -424,18 +2438,18 @@ "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", - "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", - "x-filevine-api-version": "3.3426.3.0", - "x-fv-correlation-id": "4562cb54a936470cb3fb463db5837dab", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "f76a2dc91f6b484294c7b09746260ac8", "x-aspnet-version": "4.0.30319", "x-powered-by": "ASP.NET", "x-content-type-options": "nosniff", "x-frame-option": "SAMEORIGIN", "x-xss-protection": "1; mode=block", - "x-fv-gateway-correlation-id": "4562cb54a936470cb3fb463db5837dab", + "x-fv-gateway-correlation-id": "f76a2dc91f6b484294c7b09746260ac8", "cf-cache-status": "DYNAMIC", "Content-Encoding": "gzip", - "CF-RAY": "992d12bd2939decc-SEA", + "CF-RAY": "999f70f29941765d-SEA", "alt-svc": "h3=\":443\"; ma=86400" } } diff --git a/examples/project_type.json b/examples/project_type.json new file mode 100644 index 0000000..ddc9e78 --- /dev/null +++ b/examples/project_type.json @@ -0,0 +1,50 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/ProjectTypes/34111", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTQsImV4cCI6MTc2MjM3OTkxNCwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExNCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiMTc1N0JGQzAzN0ZGODFCOUFDREI4QjhENkIwQ0U1MzciLCJpYXQiOjE3NjIzNzgxMTQsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.eaMV8RNkbxrupNCY8U6wwAQND-_mJaN7KrR4zuPSCGQbtUd8V6b_b08oegxjhI8qnaGDOGL8SjXo-7UaDWa5gfMxFmw4u3rAQKCQmpD_xezaM8KfaY9qVWyZsw_92RmM7RwqrltyBc5bx5a8efmQWjgTSce4faRzsazA69a1JMR41vI7COtJrnNz1Le29420OahoCpydUGJu2smJK4qjeIV-rJUAgtJ-f9Xy7We93CXI_Oiiqa8t2FwtVrBrHhsdQ5r8XKbg3q9HUteaGMQPT8dl8OWA-T_GBMX3ISEn8xx6jKVQtBXxa2uIO-TSwcruW5Xtuvn_Cw5RIsxLCg25Qw", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "projectTypeId": { + "native": 34111, + "partner": null + }, + "name": "Evictions", + "links": {} + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "07ebd03e709c481a93421e11091a529c", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "07ebd03e709c481a93421e11091a529c", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f710f5809322f-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/examples/project_type_sections.json b/examples/project_type_sections.json new file mode 100644 index 0000000..1a8c53b --- /dev/null +++ b/examples/project_type_sections.json @@ -0,0 +1,17316 @@ +{ + "sample_request": { + "url": "https://api.filevineapp.com/fv-app/v2/ProjectTypes/34111/sections", + "headers": { + "Accept": "application/json", + "Authorization": "Bearer eyJhbGciOiJSUzUxMiIsImtpZCI6Ijg2NjRFMkY0MDNCQjIxMzk2MzQ4NUFDOEI0MzVGMEJBOTgxNTBFN0RSUzUxMiIsInR5cCI6ImF0K2p3dCIsIng1dCI6ImhtVGk5QU83SVRsalNGckl0RFh3dXBnVkRuMCJ9.eyJuYmYiOjE3NjIzNzgxMTUsImV4cCI6MTc2MjM3OTkxNSwiaXNzIjoiaHR0cHM6Ly9pZGVudGl0eS5maWxldmluZS5jb20iLCJhdWQiOlsiZmlsZXZpbmUudjIuYXBpIiwiZnYuYXBpLmdhdGV3YXkiLCJmdi5hdXRoIl0sImNsaWVudF9pZCI6IjRGMTg3MzhDLTEwN0EtNEI4Mi1CRkFDLTMwOEYxQjZBNjI2QSIsInN1YiI6ImY3MDQ4NGZmLTQ5MjItNDliMy05MWFkLTE2YjA5Mjk5MGIzMCIsImF1dGhfdGltZSI6MTc2MjM3ODExNCwiaWRwIjoibG9jYWwiLCJwYXRfaWQiOiJoQll0K013VUJ4bm9xOTNYNVNUdnpyY0xwVFQ2M09HVHhudVcrZGFyZTVJPSIsInBhdF9uYW1lIjoiQnJ5Y2UgQ292ZXJ0IiwicGF0X3ZlcnNpb24iOiIxIiwidGVuYW50X2ZybiI6ImZybjpmaWxldmluZTp1cy1wcm9kOmZpbGV2aW5lLWFwcDo6OnRlbmFudFxcMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwidGVuYW50X2lkIjoiMGJlOGFhOGItZmEyOS00MjQ0LWI1YzItMDE5NzIzMWExNWY5IiwianRpIjoiNEMwQzNDNjdCNUEzRjY5NUU0NUIyMzQyNTY1MzQwNjgiLCJpYXQiOjE3NjIzNzgxMTUsInNjb3BlIjpbImVtYWlsIiwiZmlsZXZpbmUudjIuYXBpLioiLCJmdi5hcGkuZ2F0ZXdheS5hY2Nlc3MiLCJmdi5hdXRoLnRlbmFudC5yZWFkIiwib3BlbmlkIiwidGVuYW50Il0sImFtciI6WyJwZXJzb25hbF9hY2Nlc3NfdG9rZW4iXX0.dfmqAEkvnxDFSy7rk6LaQLm2d5rS34WCuneTSNqfb7HRRpCaTVP2AIAk5pKC2Y2QxfiG2a6RYCYEDVicxbtJLftfgSWctD3FecVqc7qv7MxErMIzArfGLW0ctyiE6iDKQdbI5QBgTdYtr9CXklLf2SuRjb52X9XHYUN-UbsELqEewAGDLwRs8fv-W0onZlR3eSE0KmMfSj-BXOcZ6N3N15i06PmBC0CVGerFy9lsWBjl5sFtbnGPWKmZrLLveINxZbH1GRVPYsVXyqOHFaxhoSpEYRXdy8pCq2-ZhTUjLUT_NpBveazBm9QwI8PzAtceqrzFkOGoFLqPMjVGV1eJ6g", + "x-fv-orgid": "9227", + "x-fv-userid": "100510" + }, + "params": {}, + "method": "GET" + }, + "sample_response": { + "status_code": 200, + "json": { + "count": 16, + "offset": 0, + "limit": 50, + "hasMore": false, + "requestedFields": "*", + "items": [ + { + "sectionSelector": "complaintInfo", + "isCollection": false, + "name": "Complaint Info", + "customFields": [ + { + "id": 6072553, + "fieldSelector": "complaintVerificationBy", + "name": "Complaint Verification By", + "dropdownItems": [ + "Plaintiff", + "Agent for Plaintiff", + "Attorney" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072554, + "fieldSelector": "complaintVerificationContact", + "name": "Complaint Verification Contact", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2890408, + "targetCustomFieldID": 6072554, + "behavior": 0, + "parameterCustomFieldID": 6072553, + "whenTestType": 3, + "whenParameter": "Plaintiff" + } + ], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072556, + "fieldSelector": "totalDamagesSought", + "name": "Total Damages Sought", + "dropdownItems": [ + "under $10,000.00", + "over $10,000.00", + "over $35,000.00" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072567, + "fieldSelector": "amendedComplaintRequired", + "name": "Amended Complaint Required?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072575, + "fieldSelector": "reasonForAmendment", + "name": "Reason for Amendment", + "dropdownItems": [ + "Name Error", + "Address Error", + "Other Correction" + ], + "customFieldType": "MultiSelectList", + "behaviors": [ + { + "id": 2837327, + "targetCustomFieldID": 6072575, + "behavior": 0, + "parameterCustomFieldID": 6072567, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072576, + "fieldSelector": "documentsAmended", + "name": "Documents Amended", + "dropdownItems": [ + "Amended Complaint", + "Amended Summons", + "Amended UD-101", + "Amended UD-120" + ], + "customFieldType": "MultiSelectList", + "behaviors": [ + { + "id": 2838462, + "targetCustomFieldID": 6072576, + "behavior": 0, + "parameterCustomFieldID": 6072567, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 5, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072577, + "fieldSelector": "amendmentNumber", + "name": "Amendment Number", + "dropdownItems": [ + "First", + "Second", + "Third", + "Just Quit" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2837330, + "targetCustomFieldID": 6072577, + "behavior": 0, + "parameterCustomFieldID": 6072567, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 5, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073838, + "fieldSelector": "cMPPreppedAndApprovedBy", + "name": "CMP Prepped and Approved By", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6083627, + "fieldSelector": "noticeExhibit", + "name": "Notice Exhibit #", + "dropdownItems": [ + "Exhibit A", + "Exhibit B" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6162884, + "fieldSelector": "prepareSummonsDoc", + "name": "Prepare Summons", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6162892, + "fieldSelector": "noticeType", + "name": "Notice Type", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6162894, + "fieldSelector": "prepareComplaintDoc", + "name": "Prepare Complaint", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6162895, + "fieldSelector": "premisesCounty", + "name": "Premises County", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166646, + "fieldSelector": "prepareCivilCaseCoverSheet", + "name": "Prepare Civil Case Cover Sheet", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166648, + "fieldSelector": "prepareUD101", + "name": "Prepare UD 101", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166650, + "fieldSelector": "prepareUD120", + "name": "Prepare UD 120", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894930, + "targetCustomFieldID": 6166650, + "behavior": 0, + "parameterCustomFieldID": 6180049, + "whenTestType": 3, + "whenParameter": "UD-120" + } + ], + "row": 9, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166961, + "fieldSelector": "civilJurisdiction", + "name": "Civil Jurisdiction", + "dropdownItems": [ + "Limited", + "Unlimited" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168397, + "fieldSelector": "prepareNonStip", + "name": "Prepare Non-Stip", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887510, + "targetCustomFieldID": 6168397, + "behavior": 0, + "parameterCustomFieldID": 6162895, + "whenTestType": 1, + "whenParameter": "Contra Costa" + } + ], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168513, + "fieldSelector": "complaintSubmittedToCourtEmail", + "name": "Complaint Submitted to Court Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890762, + "targetCustomFieldID": 6168513, + "behavior": 0, + "parameterCustomFieldID": 6162895, + "whenTestType": 2, + "whenParameter": "San Joaquin" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168514, + "fieldSelector": "complaintSubmittedToCourtSanJoaquin Email", + "name": "Complaint Submitted to Court - San Joaquin Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890763, + "targetCustomFieldID": 6168514, + "behavior": 0, + "parameterCustomFieldID": 6162895, + "whenTestType": 3, + "whenParameter": "San Joaquin" + } + ], + "row": 15, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168870, + "fieldSelector": "bILLING", + "name": "BILLING", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 17, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168872, + "fieldSelector": "AddFeeForResidentialNonpayment", + "name": "Add Fee for Residential Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890369, + "targetCustomFieldID": 6168872, + "behavior": 0, + "parameterCustomFieldID": 6168874, + "whenTestType": 4, + "whenParameter": "me" + } + ], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168874, + "fieldSelector": "typeOfTenancy", + "name": "Type of Tenancy", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168876, + "fieldSelector": "uDBaseFeeResidentialNonpa", + "name": "UD Base Fee: Residential Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2890371, + "targetCustomFieldID": 6168876, + "behavior": 0, + "parameterCustomFieldID": 6168874, + "whenTestType": 4, + "whenParameter": "me" + } + ], + "row": 18, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168877, + "fieldSelector": "AddFeeForCommercialNonpayment", + "name": "Add Fee for Commercial Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890370, + "targetCustomFieldID": 6168877, + "behavior": 0, + "parameterCustomFieldID": 6168874, + "whenTestType": 1, + "whenParameter": "Commercial" + } + ], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168878, + "fieldSelector": "uDBaseFeeCommercialNonpay", + "name": "UD Base Fee: Commercial Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2890373, + "targetCustomFieldID": 6168878, + "behavior": 0, + "parameterCustomFieldID": 6168874, + "whenTestType": 1, + "whenParameter": "Commercial" + } + ], + "row": 18, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168925, + "fieldSelector": "billForCourtFilingFee", + "name": "Bill for Court Filing Fee", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 21, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168926, + "fieldSelector": "costsInitialCaseFilingFee", + "name": "Costs: Initial Case Filing Fee", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 21, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168927, + "fieldSelector": "billForServiceOfSummons", + "name": "Bill For Service of Summons", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 21, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168928, + "fieldSelector": "costsServiceOfSummons", + "name": "Costs: Service of Summons", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 21, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168929, + "fieldSelector": "billForUnlimitedEFiling", + "name": "Bill For Unlimited E-Filing", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 22, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168930, + "fieldSelector": "costsUnlimitedEFiling", + "name": "Costs: Unlimited E-Filing", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 22, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168934, + "fieldSelector": "pIACostsInfoOnlyNotCalc", + "name": "PIA Costs (Info Only, Not Calculated)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 18, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169568, + "fieldSelector": "billBaseFeeForCase", + "name": "Bill Base Fee for Case", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169644, + "fieldSelector": "useAdditionalPlaintiffsAttach", + "name": "Use Additional Plaintiffs Attachment for Summons", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169645, + "fieldSelector": "useAdditionalDefendantsAttachment", + "name": "Use Additional Defendants Attachment for Summons", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 7, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170103, + "fieldSelector": "filedCaseReceivedFromCourt", + "name": "Filed Case Received From Court", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 16, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170967, + "fieldSelector": "checkComplaintTaskList", + "name": "Check Complaint Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889351, + "targetCustomFieldID": 6170967, + "behavior": 0, + "parameterCustomFieldID": 6073838, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 14, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172495, + "fieldSelector": "prepareAdditionalDefendantsSumAttach", + "name": "Prepare Additional Defendants Summons Attachment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2890366, + "targetCustomFieldID": 6172495, + "behavior": 0, + "parameterCustomFieldID": 6169645, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172496, + "fieldSelector": "prepareAdditionalPlaintiffsSumAttach", + "name": "Prepare Additional Plaintiffs Summons Attachment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2890367, + "targetCustomFieldID": 6172496, + "behavior": 0, + "parameterCustomFieldID": 6169644, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 11, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180049, + "fieldSelector": "selectCountiesThatRequireUD101UD120", + "name": "Select Counties that require UD-101 and-UD 120", + "dropdownItems": [ + "Santa Clara UD-101, UD-120", + "Santa Cruz UD-101.UD-120" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180059, + "fieldSelector": "selectCountiesThatRequireAddlFormWCmp", + "name": "Select Counties that require additional form to be filed with the Compaint", + "dropdownItems": [ + "Stanislaus (CV011)", + "Contra Costa - Pittsburg - (Non-Stip)" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180061, + "fieldSelector": "prepareNonStipToCommissioner", + "name": "Prepare Non-Stip to Commissioner", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2894954, + "targetCustomFieldID": 6180061, + "behavior": 0, + "parameterCustomFieldID": 6180059, + "whenTestType": 3, + "whenParameter": "(Non-Stip)" + } + ], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/complaintInfo" + } + }, + { + "sectionSelector": "datesAndDeadlines", + "isCollection": false, + "name": "Dates & Deadlines", + "customFields": [ + { + "id": 6072744, + "fieldSelector": "complaintInfo", + "name": "Complaint Info", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072745, + "fieldSelector": "dateCaseFiled", + "name": "Date Case Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072746, + "fieldSelector": "caseNumber", + "name": "Case Number", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072747, + "fieldSelector": "amendedComplaintRequired", + "name": "Amended Complaint Required?", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072748, + "fieldSelector": "dateAmendmentFiled", + "name": "Date Amendment Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837465, + "targetCustomFieldID": 6072748, + "behavior": 0, + "parameterCustomFieldID": 6072747, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 3, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072749, + "fieldSelector": "serviceAndDefault", + "name": "Service", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072750, + "fieldSelector": "defaultDate", + "name": "Default Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2887703, + "targetCustomFieldID": 6072750, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 20, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072751, + "fieldSelector": "preAnswerMotions", + "name": "Pre-Answer Motions", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2837492, + "targetCustomFieldID": 6072751, + "behavior": 0, + "parameterCustomFieldID": 6072766, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 27, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072752, + "fieldSelector": "motionToQuashFiled", + "name": "Motion to Quash Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837480, + "targetCustomFieldID": 6072752, + "behavior": 0, + "parameterCustomFieldID": 6072766, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 28, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072753, + "fieldSelector": "motionToStrikeFiled", + "name": "Motion to Strike Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837481, + "targetCustomFieldID": 6072753, + "behavior": 0, + "parameterCustomFieldID": 6072766, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 33, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072754, + "fieldSelector": "demurrerFiled", + "name": "Demurrer Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837482, + "targetCustomFieldID": 6072754, + "behavior": 0, + "parameterCustomFieldID": 6072766, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 38, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072755, + "fieldSelector": "dateAnswerFiled", + "name": "Date Answer Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 54, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072756, + "fieldSelector": "allPartiesAtIssueOrInDefault", + "name": "All Parties at Issue?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 54, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072757, + "fieldSelector": "MTQResponseDue", + "name": "MTQ Response Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837475, + "targetCustomFieldID": 6072757, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 29, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072758, + "fieldSelector": "mTQTaskList", + "name": "MTQ Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837474, + "targetCustomFieldID": 6072758, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 28, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072760, + "fieldSelector": "answerDueDate", + "name": "Answer Due Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2887704, + "targetCustomFieldID": 6072760, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 20, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072763, + "fieldSelector": "answer", + "name": "Answer", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 53, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072766, + "fieldSelector": "showPreAnswerMotions", + "name": "Show Pre-Answer Motions", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 27, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072774, + "fieldSelector": "allPartiesServedAndLogged", + "name": "All Parties Served and Logged", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072775, + "fieldSelector": "PMONeeded", + "name": "PMO Needed", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837495, + "targetCustomFieldID": 6072775, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 4, + "whenParameter": "Yes" + } + ], + "row": 12, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072781, + "fieldSelector": "pMOPrepTaskList", + "name": "PMO Prep Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887697, + "targetCustomFieldID": 6072781, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072785, + "fieldSelector": "MTSTaskList", + "name": "MTS Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837542, + "targetCustomFieldID": 6072785, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 33, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072786, + "fieldSelector": "MTSOppositionDue", + "name": "MTS Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837545, + "targetCustomFieldID": 6072786, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 34, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072920, + "fieldSelector": "requestToSetFiled", + "name": "Request to Set Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2895047, + "targetCustomFieldID": 6072920, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 65, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072921, + "fieldSelector": "trialAndTrialPrep", + "name": "Trial and Trial Prep", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2837750, + "targetCustomFieldID": 6072921, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 62, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072923, + "fieldSelector": "didTheCourtSetAnMSC", + "name": "Did the Court Set an MSC?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837769, + "targetCustomFieldID": 6072923, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 72, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072925, + "fieldSelector": "trialTime", + "name": "Trial Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2887772, + "targetCustomFieldID": 6072925, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 68, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072927, + "fieldSelector": "trialDeptDivRoom", + "name": "Trial Dept/ Div/ Room", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2887773, + "targetCustomFieldID": 6072927, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 68, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072928, + "fieldSelector": "trialAddress", + "name": "Trial Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888957, + "targetCustomFieldID": 6072928, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 69, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072931, + "fieldSelector": "mSCTime", + "name": "MSC Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837765, + "targetCustomFieldID": 6072931, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 73, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072932, + "fieldSelector": "mSCDeptDiv", + "name": "MSC Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841687, + "targetCustomFieldID": 6072932, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 73, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072933, + "fieldSelector": "mSCAddress", + "name": "MSC Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888962, + "targetCustomFieldID": 6072933, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 73, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072934, + "fieldSelector": "trialType", + "name": "Trial Type", + "dropdownItems": [ + "Court", + "Jury" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2887775, + "targetCustomFieldID": 6072934, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 69, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072936, + "fieldSelector": "finalResultOfTrialMSCCa", + "name": "Final Result of Trial/ MSC/ Case", + "dropdownItems": [ + "Default Judgment\"", + "Prove Up Judgment'", + "Judgment' After Trial", + "Stipulated Judgment", + "Stipulated Judgment with Set Aside", + "Stipulated Judgment with Payments and Set Aside", + "Judgment\" Pursuant to Violation of Stip", + "Stipulation to Vacate", + "Stipulation to Pay and Vacate", + "Stipulation to Pay and Stay", + "Dismissed at Court" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 82, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072948, + "fieldSelector": "stipulation", + "name": "Stipulation", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 106, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072949, + "fieldSelector": "judgmentAndWrit", + "name": "Judgment and Writ", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2837893, + "targetCustomFieldID": 6072949, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 116, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072950, + "fieldSelector": "dismissal", + "name": "Dismissal", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 147, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072953, + "fieldSelector": "showMotionsSection", + "name": "Show Post Trial Motions Section", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2893360, + "targetCustomFieldID": 6072953, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 85, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072954, + "fieldSelector": "PostTrialMotionsHeader", + "name": "Post Trial Motions", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2893359, + "targetCustomFieldID": 6072954, + "behavior": 0, + "parameterCustomFieldID": 6072953, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 85, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072956, + "fieldSelector": "motionToSetAside", + "name": "Motion to Set Aside?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837776, + "targetCustomFieldID": 6072956, + "behavior": 0, + "parameterCustomFieldID": 6072953, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 86, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072958, + "fieldSelector": "claimOfRightToPossession", + "name": "Claim of Right to Possession", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837777, + "targetCustomFieldID": 6072958, + "behavior": 0, + "parameterCustomFieldID": 6072953, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 91, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072959, + "fieldSelector": "otherMotion1", + "name": "Other Motion 1", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837778, + "targetCustomFieldID": 6072959, + "behavior": 0, + "parameterCustomFieldID": 6072953, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 100, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072961, + "fieldSelector": "otherMotion2", + "name": "Other Motion 2", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837826, + "targetCustomFieldID": 6072961, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 103, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073130, + "fieldSelector": "demurrerTaskList", + "name": "Demurrer Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837814, + "targetCustomFieldID": 6073130, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 38, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073135, + "fieldSelector": "demurrerOppositionDue", + "name": "Demurrer Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837813, + "targetCustomFieldID": 6073135, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 39, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073139, + "fieldSelector": "mTSATaskList", + "name": "MTSA Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837817, + "targetCustomFieldID": 6073139, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 86, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073140, + "fieldSelector": "mTSAOppositionDue", + "name": "MTSA Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837818, + "targetCustomFieldID": 6073140, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 87, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073143, + "fieldSelector": "cOPTaskList", + "name": "COP Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837822, + "targetCustomFieldID": 6073143, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 91, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073144, + "fieldSelector": "cOPOrderDue", + "name": "COP Order Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837824, + "targetCustomFieldID": 6073144, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 93, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073146, + "fieldSelector": "typeOfMotion1", + "name": "Type of Motion 1", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837842, + "targetCustomFieldID": 6073146, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 100, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073149, + "fieldSelector": "motion1TaskList", + "name": "Motion 1 Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837832, + "targetCustomFieldID": 6073149, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 100, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073151, + "fieldSelector": "motion1OppositionDue", + "name": "Motion 1 Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837834, + "targetCustomFieldID": 6073151, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 101, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073158, + "fieldSelector": "typeOfMotion2", + "name": "Type of Motion 2", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837841, + "targetCustomFieldID": 6073158, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 103, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073160, + "fieldSelector": "motion2TaskList", + "name": "Motion 2 Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837844, + "targetCustomFieldID": 6073160, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 103, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073162, + "fieldSelector": "motion2OppositionDue", + "name": "Motion 2 Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2837851, + "targetCustomFieldID": 6073162, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 104, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073210, + "fieldSelector": "dateOfStipulation", + "name": "Date of Stipulation", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837886, + "targetCustomFieldID": 6073210, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stip" + } + ], + "row": 107, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073211, + "fieldSelector": "finalObligationUnderTheStip", + "name": "Final Obligation Under the Stipulation", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837887, + "targetCustomFieldID": 6073211, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stip" + } + ], + "row": 107, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073212, + "fieldSelector": "defendantsComplyWithStip", + "name": "Did the Defendant(s) Comply with the Stipulation", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890704, + "targetCustomFieldID": 6073212, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stip" + } + ], + "row": 108, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073213, + "fieldSelector": "didTheCourtSetAnOSC", + "name": "Did the Court Set an OSC?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837881, + "targetCustomFieldID": 6073213, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 2, + "whenParameter": "Unknown" + } + ], + "row": 113, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073215, + "fieldSelector": "oSCHearingTime", + "name": "OSC Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841749, + "targetCustomFieldID": 6073215, + "behavior": 0, + "parameterCustomFieldID": 6073213, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 114, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073216, + "fieldSelector": "oSCHearingLocation", + "name": "OSC Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2889118, + "targetCustomFieldID": 6073216, + "behavior": 0, + "parameterCustomFieldID": 6073213, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 114, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073217, + "fieldSelector": "oSCHearingDeptDiv", + "name": "OSC Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841750, + "targetCustomFieldID": 6073217, + "behavior": 0, + "parameterCustomFieldID": 6073213, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 114, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073218, + "fieldSelector": "stipTaskList", + "name": "Stip Prep Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 106, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073219, + "fieldSelector": "finalResultOfCase", + "name": "Final Result of Case", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 81, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073221, + "fieldSelector": "dateOfJudgment", + "name": "Date of Judgment", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2891241, + "targetCustomFieldID": 6073221, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 117, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073222, + "fieldSelector": "writIssuedDate", + "name": "Writ Issued Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2893814, + "targetCustomFieldID": 6073222, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 119, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073223, + "fieldSelector": "sheriffScheduledDate", + "name": "Sheriff Scheduled Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2893823, + "targetCustomFieldID": 6073223, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 129, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073224, + "fieldSelector": "opposeStays", + "name": "Oppose Stays?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 141, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073225, + "fieldSelector": "basisOfOppositionToStay", + "name": "Basis of Opposition to Stay", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890378, + "targetCustomFieldID": 6073225, + "behavior": 0, + "parameterCustomFieldID": 6073224, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 141, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073226, + "fieldSelector": "sheriffFileNumber", + "name": "Sheriff File Number", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2887863, + "targetCustomFieldID": 6073226, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 134, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073228, + "fieldSelector": "datePossessionRecovered", + "name": "Date Possession Recovered", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 137, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073231, + "fieldSelector": "showDismissalSection", + "name": "Show Dismissal Section", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 148, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073233, + "fieldSelector": "dateDismissalFiled", + "name": "Date Dismissal Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837907, + "targetCustomFieldID": 6073233, + "behavior": 0, + "parameterCustomFieldID": 6073231, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 149, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073235, + "fieldSelector": "dismissalTaskList", + "name": "Dismissal Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2837910, + "targetCustomFieldID": 6073235, + "behavior": 0, + "parameterCustomFieldID": 6073231, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 148, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073313, + "fieldSelector": "dismissalType", + "name": "Dismissal Type", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2838001, + "targetCustomFieldID": 6073313, + "behavior": 0, + "parameterCustomFieldID": 6073231, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 149, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073315, + "fieldSelector": "dismissalNotes", + "name": "Dismissal Notes", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2838002, + "targetCustomFieldID": 6073315, + "behavior": 0, + "parameterCustomFieldID": 6073231, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 149, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073551, + "fieldSelector": "answerReceived", + "name": "Answer Received", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 54, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073841, + "fieldSelector": "JDGAfterStipTaskList", + "name": "JDG after Stip Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2838398, + "targetCustomFieldID": 6073841, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 109, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080316, + "fieldSelector": "mTQHearingDate", + "name": "MTQ Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841652, + "targetCustomFieldID": 6080316, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 29, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080318, + "fieldSelector": "mTQHearingTime", + "name": "MTQ Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841657, + "targetCustomFieldID": 6080318, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 30, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080319, + "fieldSelector": "mTQHearingDeptDiv", + "name": "MTQ Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841658, + "targetCustomFieldID": 6080319, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 30, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080320, + "fieldSelector": "mTQHearingAddress", + "name": "MTQ Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893352, + "targetCustomFieldID": 6080320, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 30, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080321, + "fieldSelector": "mTSHearingDate", + "name": "MTS Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841664, + "targetCustomFieldID": 6080321, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 34, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080322, + "fieldSelector": "mTSHearingTime", + "name": "MTS Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841665, + "targetCustomFieldID": 6080322, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080324, + "fieldSelector": "demurrerHearingDate", + "name": "Demurrer Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841673, + "targetCustomFieldID": 6080324, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 39, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080325, + "fieldSelector": "demurrerHearingTime", + "name": "Demurrer Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841674, + "targetCustomFieldID": 6080325, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 40, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080326, + "fieldSelector": "demurrerHearingDeptDiv", + "name": "Demurrer Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841676, + "targetCustomFieldID": 6080326, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 40, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080327, + "fieldSelector": "demurrerHearingAddress", + "name": "Demurrer Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888959, + "targetCustomFieldID": 6080327, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 40, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080328, + "fieldSelector": "trialDate", + "name": "Trial Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2887771, + "targetCustomFieldID": 6080328, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 68, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080329, + "fieldSelector": "mSCDate", + "name": "MSC Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841683, + "targetCustomFieldID": 6080329, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 72, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080330, + "fieldSelector": "mTSAHearingDate", + "name": "MTSA Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841689, + "targetCustomFieldID": 6080330, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 87, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080331, + "fieldSelector": "mTSAHearingTime", + "name": "MTSA Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841690, + "targetCustomFieldID": 6080331, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 88, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080332, + "fieldSelector": "mTSAHearingDeptDiv", + "name": "MTSA Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841691, + "targetCustomFieldID": 6080332, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 88, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080333, + "fieldSelector": "mTSAHearingAddress", + "name": "MTSA Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888963, + "targetCustomFieldID": 6080333, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 88, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080334, + "fieldSelector": "cOPHearingDate", + "name": "COP Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841693, + "targetCustomFieldID": 6080334, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 93, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080335, + "fieldSelector": "cOPHearingTime", + "name": "COP Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841694, + "targetCustomFieldID": 6080335, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 94, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080336, + "fieldSelector": "cOPHearingDepDiv", + "name": "COP Hearing Dep/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841695, + "targetCustomFieldID": 6080336, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 94, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080337, + "fieldSelector": "cOPHearingAddress", + "name": "COP Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888964, + "targetCustomFieldID": 6080337, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 94, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080339, + "fieldSelector": "mTSHearingDeptDiv", + "name": "MTS Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841697, + "targetCustomFieldID": 6080339, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080340, + "fieldSelector": "mTSHearingAddress", + "name": "MTS Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888958, + "targetCustomFieldID": 6080340, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080342, + "fieldSelector": "otherMotion1HearingDate", + "name": "Other Motion 1 Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841705, + "targetCustomFieldID": 6080342, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 101, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080343, + "fieldSelector": "otherMotion1HearingTime", + "name": "Other Motion 1 Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841701, + "targetCustomFieldID": 6080343, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 102, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080344, + "fieldSelector": "otherMotion1HearingDeptD", + "name": "Other Motion 1 Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841702, + "targetCustomFieldID": 6080344, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 102, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080345, + "fieldSelector": "otherMotion1HearingAddress", + "name": "Other Motion 1 Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2889029, + "targetCustomFieldID": 6080345, + "behavior": 0, + "parameterCustomFieldID": 6072959, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 100, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080346, + "fieldSelector": "otherMotion2HearingDate", + "name": "Other Motion 2 Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841706, + "targetCustomFieldID": 6080346, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 104, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080347, + "fieldSelector": "otherMotion2HearingTime", + "name": "Other Motion 2 Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841707, + "targetCustomFieldID": 6080347, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 105, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080394, + "fieldSelector": "otherMotion2HearingDeptD", + "name": "Other Motion 2 Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841727, + "targetCustomFieldID": 6080394, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 105, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080395, + "fieldSelector": "otherMotion2HearingAddress", + "name": "Other Motion 2 Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2889040, + "targetCustomFieldID": 6080395, + "behavior": 0, + "parameterCustomFieldID": 6072961, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 103, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080396, + "fieldSelector": "exParteAppForJDGHearingDate", + "name": "Ex Parte App for Judgment Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841737, + "targetCustomFieldID": 6080396, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 109, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080397, + "fieldSelector": "exParteAppForJDGHearingTime", + "name": "Ex Parte App for Judgment Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841741, + "targetCustomFieldID": 6080397, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 110, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080398, + "fieldSelector": "exParteAppForJDGHearingDeptDiv", + "name": "Ex Parte App for Judgment Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2841744, + "targetCustomFieldID": 6080398, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 110, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080399, + "fieldSelector": "exParteAppForJDGHearingAddress", + "name": "Ex Parte App for Judgment Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890700, + "targetCustomFieldID": 6080399, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 109, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6080401, + "fieldSelector": "oSCHearingDate", + "name": "OSC Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2841748, + "targetCustomFieldID": 6080401, + "behavior": 0, + "parameterCustomFieldID": 6073213, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 113, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6092891, + "fieldSelector": "otherCaseStays", + "name": "Other Case Stays", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 24, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6092892, + "fieldSelector": "hasAnRARBeenRequested", + "name": "Has an RAR Been Requested?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 25, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6092893, + "fieldSelector": "rARTaskList", + "name": "RAR Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2848995, + "targetCustomFieldID": 6092893, + "behavior": 0, + "parameterCustomFieldID": 6092892, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 25, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6092894, + "fieldSelector": "hasBankruptcyBeenFiled", + "name": "Has bankruptcy been filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 26, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6092895, + "fieldSelector": "bKTaskList", + "name": "BK Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2848996, + "targetCustomFieldID": 6092895, + "behavior": 0, + "parameterCustomFieldID": 6092894, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 26, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096330, + "fieldSelector": "discovery", + "name": "Discovery", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 46, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096333, + "fieldSelector": "discoveryHasBeenServedOnP", + "name": "Discovery has been served on Plaintiff?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 47, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096334, + "fieldSelector": "discoveryTaskList", + "name": "Discovery Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2851196, + "targetCustomFieldID": 6096334, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 47, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096335, + "fieldSelector": "discoveryDueDate", + "name": "Discovery Due Date", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2851198, + "targetCustomFieldID": 6096335, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 47, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096336, + "fieldSelector": "discoveryMotionServedOnPla", + "name": "Discovery Motion Served on Plaintiff", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2851199, + "targetCustomFieldID": 6096336, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 48, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096337, + "fieldSelector": "discoveryMotionTaskList", + "name": "Discovery Motion Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2851201, + "targetCustomFieldID": 6096337, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 48, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096338, + "fieldSelector": "discoveryMotionHearingDate", + "name": "Discovery Motion Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2851202, + "targetCustomFieldID": 6096338, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 49, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096339, + "fieldSelector": "discoveryMotionOppositionDue", + "name": "Discovery Motion Opposition Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2851203, + "targetCustomFieldID": 6096339, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 49, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096341, + "fieldSelector": "discoveryMotionHearingTime", + "name": "Discovery Motion Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851204, + "targetCustomFieldID": 6096341, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 50, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096342, + "fieldSelector": "discoveryMotionHearingDeptDiv", + "name": "Discovery Motion Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851205, + "targetCustomFieldID": 6096342, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 50, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096343, + "fieldSelector": "discoveryMotionHearingAddress", + "name": "Discovery Motion Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888960, + "targetCustomFieldID": 6096343, + "behavior": 0, + "parameterCustomFieldID": 6096336, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 49, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165406, + "fieldSelector": "prepareDismissalOfDoes", + "name": "Prepare Dismissal of Does", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2889171, + "targetCustomFieldID": 6165406, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 21, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165407, + "fieldSelector": "prepareRequestForEntryOfDefault", + "name": "Prepare Request for Entry of Default", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2889175, + "targetCustomFieldID": 6165407, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 21, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165408, + "fieldSelector": "prepareDefaultJudgment", + "name": "Prepare Default Judgment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2889176, + "targetCustomFieldID": 6165408, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 21, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165461, + "fieldSelector": "prepareSheriffInstructions", + "name": "Prepare Sheriff Instructions", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895127, + "targetCustomFieldID": 6165461, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 122, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165462, + "fieldSelector": "prepareWrit", + "name": "Prepare Writ (Check Def Status is Judgment Entered)", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893815, + "targetCustomFieldID": 6165462, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 119, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165463, + "fieldSelector": "prepareSheriffAttachment", + "name": "Prepare Sheriff Attachment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895128, + "targetCustomFieldID": 6165463, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 122, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165464, + "fieldSelector": "finalResultOfTrialMSCCa_1", + "name": "Final Result of Trial/ MSC/ Case", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 116, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166612, + "fieldSelector": "prepareRequestToSerForTrial", + "name": "Prepare Request to Ser for Trial", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895052, + "targetCustomFieldID": 6166612, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 63, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166613, + "fieldSelector": "moreThan6DefendantsAtIssue", + "name": "More than 6 Defendants at Issue?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2895053, + "targetCustomFieldID": 6166613, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 63, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166615, + "fieldSelector": "prepareMC025", + "name": "Prepare Additional Defendant's Service of Request to Set", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895054, + "targetCustomFieldID": 6166615, + "behavior": 0, + "parameterCustomFieldID": 6166613, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 63, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168395, + "fieldSelector": "prepareServiceRecord", + "name": "Prepare Service Record", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168515, + "fieldSelector": "complaintFilingHasBeenAccepted", + "name": "Complaint Filing has been Accepted", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887691, + "targetCustomFieldID": 6168515, + "behavior": 0, + "parameterCustomFieldID": 6072746, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168516, + "fieldSelector": "workingOnService", + "name": "Working on Service", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888966, + "targetCustomFieldID": 6168516, + "behavior": 0, + "parameterCustomFieldID": 6072746, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 10, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168520, + "fieldSelector": "pMONeededEmail", + "name": "PMO Needed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891049, + "targetCustomFieldID": 6168520, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 13, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168524, + "fieldSelector": "pMOGranted", + "name": "PMO Granted", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887700, + "targetCustomFieldID": 6168524, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168525, + "fieldSelector": "default", + "name": "Default", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2887708, + "targetCustomFieldID": 6168525, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 18, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168531, + "fieldSelector": "allDefendantsServedEmail", + "name": "All Defendants Served Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891050, + "targetCustomFieldID": 6168531, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 20, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168548, + "fieldSelector": "defaultSubmittedEmail", + "name": "Default Submitted Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891051, + "targetCustomFieldID": 6168548, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 23, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168606, + "fieldSelector": "mTQFiledEmail", + "name": "MTQ Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891052, + "targetCustomFieldID": 6168606, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 31, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168611, + "fieldSelector": "mTSFiledEmail", + "name": "MTS Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891053, + "targetCustomFieldID": 6168611, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 36, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168616, + "fieldSelector": "demurrerFiledEmail", + "name": "Demurrer Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891054, + "targetCustomFieldID": 6168616, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 41, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168626, + "fieldSelector": "caseAtIssueEmail", + "name": "Case at Issue Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891055, + "targetCustomFieldID": 6168626, + "behavior": 0, + "parameterCustomFieldID": 6073551, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 55, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168629, + "fieldSelector": "caseAtIssueWAnswerEmai", + "name": "Case At Issue (w/ Answer) Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891056, + "targetCustomFieldID": 6168629, + "behavior": 0, + "parameterCustomFieldID": 6073551, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 55, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168639, + "fieldSelector": "requestToSetFiledEmail", + "name": "Request to Set Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891057, + "targetCustomFieldID": 6168639, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 67, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168640, + "fieldSelector": "mSC", + "name": "MSC", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2887780, + "targetCustomFieldID": 6168640, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 71, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168642, + "fieldSelector": "trialDateReceivedNoMSCEmail", + "name": "Trial Date Received No MSC Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891058, + "targetCustomFieldID": 6168642, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 74, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168713, + "fieldSelector": "trialDateReceivedWithMSCEmail", + "name": "Trial Date Received With MSC Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891059, + "targetCustomFieldID": 6168713, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 74, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168714, + "fieldSelector": "continuedTrialDateEmail", + "name": "Continued Trial Date Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893350, + "targetCustomFieldID": 6168714, + "behavior": 0, + "parameterCustomFieldID": 6177667, + "whenTestType": 3, + "whenParameter": "Trial Date" + } + ], + "row": 75, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168715, + "fieldSelector": "continuedTrialAndMSCDateEmail", + "name": "Continued Trial and MSC Date Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893351, + "targetCustomFieldID": 6168715, + "behavior": 0, + "parameterCustomFieldID": 6177667, + "whenTestType": 3, + "whenParameter": "Trial and MSC Date" + } + ], + "row": 75, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168744, + "fieldSelector": "stipulationEnteredEmail", + "name": "Stipulation Entered Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891062, + "targetCustomFieldID": 6168744, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stipulation" + } + ], + "row": 84, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168745, + "fieldSelector": "judgmentEnteredAtTrialEmai", + "name": "Judgment Entered at Trial Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891063, + "targetCustomFieldID": 6168745, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment'" + } + ], + "row": 84, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168746, + "fieldSelector": "stipulatedJudgmentEnteredEmail", + "name": "Stipulated Judgment Entered Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891064, + "targetCustomFieldID": 6168746, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stipulated Judgment" + } + ], + "row": 84, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168747, + "fieldSelector": "judgmentEnteredEmail", + "name": "Judgment Entered Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893829, + "targetCustomFieldID": 6168747, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment\"" + } + ], + "row": 117, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168748, + "fieldSelector": "writIssuedEmail", + "name": "Writ Issued Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893830, + "targetCustomFieldID": 6168748, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 119, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168750, + "fieldSelector": "sheriffReceivedWritEmail", + "name": "Sheriff Received Writ Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2895114, + "targetCustomFieldID": 6168750, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 133, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168752, + "fieldSelector": "lockoutScheduledEmail", + "name": "Lockout Scheduled Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2896967, + "targetCustomFieldID": 6168752, + "behavior": 0, + "parameterCustomFieldID": 6073226, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 135, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168886, + "fieldSelector": "discoveryBilling", + "name": "Discovery Billing", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2888002, + "targetCustomFieldID": 6168886, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 51, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168887, + "fieldSelector": "billForDiscoveryUpTo3Items", + "name": "Bill For Discovery - Up to 3 Items", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888003, + "targetCustomFieldID": 6168887, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 52, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168888, + "fieldSelector": "billForDiscoveryDeposition", + "name": "Bill For Discovery - Deposition", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888004, + "targetCustomFieldID": 6168888, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 52, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168890, + "fieldSelector": "attorneyFeesDiscovery", + "name": "Attorney Fees: Discovery", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888005, + "targetCustomFieldID": 6168890, + "behavior": 0, + "parameterCustomFieldID": 6096333, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 52, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168891, + "fieldSelector": "mSCBilling", + "name": "MSC Billing", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2888006, + "targetCustomFieldID": 6168891, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 77, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168892, + "fieldSelector": "billForMSC", + "name": "Bill for MSC", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888007, + "targetCustomFieldID": 6168892, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 78, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168893, + "fieldSelector": "attorneyFeesMandatorySettl", + "name": "Attorney Fees: Mandatory Settlement Conference", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888008, + "targetCustomFieldID": 6168893, + "behavior": 0, + "parameterCustomFieldID": 6072923, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 78, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168896, + "fieldSelector": "billForCOP", + "name": "Bill for COP", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893886, + "targetCustomFieldID": 6168896, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 96, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168899, + "fieldSelector": "attorneyFeesClaimOfRight", + "name": "Attorney Fees: Claim of Right to Possession", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893887, + "targetCustomFieldID": 6168899, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 96, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168936, + "fieldSelector": "writAndSheriffBilling", + "name": "Writ and Sheriff Billing", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2888032, + "targetCustomFieldID": 6168936, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 138, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168937, + "fieldSelector": "billForWritIssuance", + "name": "Bill for Writ Issuance", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888033, + "targetCustomFieldID": 6168937, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 139, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168938, + "fieldSelector": "costsWritIssuance", + "name": "Costs: Writ Issuance", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888034, + "targetCustomFieldID": 6168938, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 139, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168939, + "fieldSelector": "billForSheriff", + "name": "Bill For Sheriff", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888035, + "targetCustomFieldID": 6168939, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 139, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168940, + "fieldSelector": "costsSheriffSFee", + "name": "Costs: Sheriff's Fee", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888036, + "targetCustomFieldID": 6168940, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 139, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168941, + "fieldSelector": "showMSJSection", + "name": "Show MSJ Section", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2888040, + "targetCustomFieldID": 6168941, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 57, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168942, + "fieldSelector": "mSJ", + "name": "MSJ", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2888039, + "targetCustomFieldID": 6168942, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 56, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168943, + "fieldSelector": "mSJTaskList", + "name": "MSJ Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888041, + "targetCustomFieldID": 6168943, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 57, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168944, + "fieldSelector": "mSJDue", + "name": "MSJ Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2888042, + "targetCustomFieldID": 6168944, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 58, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168945, + "fieldSelector": "mSJHearingDate", + "name": "MSJ Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2888043, + "targetCustomFieldID": 6168945, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 58, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168946, + "fieldSelector": "mSJHearingTime", + "name": "MSJ Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2888044, + "targetCustomFieldID": 6168946, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 59, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168947, + "fieldSelector": "mSJHearingDeptDiv", + "name": "MSJ Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2888045, + "targetCustomFieldID": 6168947, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 59, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168948, + "fieldSelector": "mSJHearingAddress", + "name": "MSJ Hearing Address", + "dropdownItems": [ + "24405 Amador Street, Hayward, CA 94544", + "1225 Fallon Street, Oakland, CA 94612", + "500 Argonaut Lane, Jackson, CA 95642", + "1775 Concord Avenue, Chico, CA 95928", + "400 Government Center Drive, San Andreas, CA 95249", + "725 Court Street, Martinez, CA 94553", + "1000 Center Drive, Pittsburg, CA 94565", + "100 37th Street, Richmond, CA 94805", + "3321 Cameron Park Drive, Cameron Park, CA 95682", + "1354 Johnson Boulevard, South Lake Tahoe, CA 96150", + "1130 O Street, Fresno, CA 93721", + "526 West Sycamore Street, Willows, CA 95988", + "825 5th Street, Eureka, CA 95501", + "7000 A South Center Drive, Clearlake, CA 95422", + "255 North Forbes Street, Lakeport, CA 95453", + "2610 Riverside Drive, Susanville, CA 96130", + "3501 Civic Center Drive, San Rafael, CA 94913", + "100 North State Street, Ukiah, CA 95482", + "627 West 21st Street, Merced, CA 95340", + "1200 Aguajito Road, Monterey, CA 93940", + "825 Brown Street, Napa, CA 94559", + "201 Church Street, Nevada City, CA 95959", + "10075 Levon Avenue, Truckee, CA 96161", + "10820 Justice Center Drive, Roseville, CA 95661", + "301 Bicentennial Circle, Sacramento, CA 95826", + "450 Fourth Street, Hollister, CA 95023", + "400 McAllister Street, San Francisco, CA 94102", + "315 East Center Street, Manteca, CA 95336", + "180 E. Weber Avenue, Stockton, CA 95202", + "901 Park Street, Paso Robles, CA 93446", + "1035 Palm Street, San Luis Obispo, CA 93401", + "800 N. Humboldt Street, San Mateo, CA 94401", + "191 North First Street, San Jose, CA 95113", + "701 Ocean Street, Santa Cruz, CA 95060", + "1500 Court Street, Redding, CA 96001", + "600 Union Avenue, Fairfield, CA 94533", + "600 Administration Drive, Santa Rosa, CA 95403", + "801 10th Street, 4th floor, Modesto, CA 95354", + "300 Starr Avenue, Turlock, CA 95380", + "1175 Civic Center Boulevard, Yuba City, CA 95993", + "633 Washington Street, Red Bluff, CA 96080", + "41 West Yaney Avenue, Sonora, CA 95370", + "1000 Main Street, Woodland, CA 95695", + "215 5th Street, Suite 200, Marysville, CA 95901" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2888961, + "targetCustomFieldID": 6168948, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 59, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168949, + "fieldSelector": "billForMSJFilingCost", + "name": "Bill for MSJ Filing Cost", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888047, + "targetCustomFieldID": 6168949, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 60, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168950, + "fieldSelector": "costsMSJFilingFee", + "name": "Costs: MSJ Filing Fee", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888048, + "targetCustomFieldID": 6168950, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 60, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168951, + "fieldSelector": "billForExParteFeeAppForJudgment", + "name": "Bill for Ex Parte Fee - App for Judgment", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888050, + "targetCustomFieldID": 6168951, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 111, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168952, + "fieldSelector": "costsExParteAppFee1", + "name": "Costs: Ex Parte App Fee 1", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888052, + "targetCustomFieldID": 6168952, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 111, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169253, + "fieldSelector": "oSCComplianceFollowUpEmail", + "name": "OSC Compliance Follow Up Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891040, + "targetCustomFieldID": 6169253, + "behavior": 0, + "parameterCustomFieldID": 6073213, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 115, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169273, + "fieldSelector": "caseDismissedEmail", + "name": "Case Dismissed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 151, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170050, + "fieldSelector": "billForServiceOfSummonsT", + "name": "Bill For Service of Summons (TriggeredDate)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888911, + "targetCustomFieldID": 6170050, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 12, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170051, + "fieldSelector": "costsServiceOfSummons", + "name": "Costs: Service of Summons", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888912, + "targetCustomFieldID": 6170051, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 12, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170100, + "fieldSelector": "emailProcessServerRequestingPhoto", + "name": "Email Process Server Requesting Photo of Service", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888972, + "targetCustomFieldID": 6170100, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 18, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170101, + "fieldSelector": "processServerAssigned", + "name": "Process Server Assigned", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170104, + "fieldSelector": "premisesCounty", + "name": "Premises County", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170106, + "fieldSelector": "emailComplaintToSanJoseRentBoard", + "name": "Email Complaint to San Jose Rent Board", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889187, + "targetCustomFieldID": 6170106, + "behavior": 0, + "parameterCustomFieldID": 6170704, + "whenTestType": 1, + "whenParameter": "San Jose" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170704, + "fieldSelector": "projectJustCauseCity", + "name": "Project Just Cause City", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170705, + "fieldSelector": "emailComplaintToBerkeleyRentBoard", + "name": "Email Complaint to Berkeley Rent Board", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889188, + "targetCustomFieldID": 6170705, + "behavior": 0, + "parameterCustomFieldID": 6170704, + "whenTestType": 1, + "whenParameter": "Berkeley" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170708, + "fieldSelector": "emailComplaintToEPARentBoard", + "name": "Email Complaint to East Palo Alto Rent Board", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889191, + "targetCustomFieldID": 6170708, + "behavior": 0, + "parameterCustomFieldID": 6170704, + "whenTestType": 1, + "whenParameter": "East Palo Alto" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170711, + "fieldSelector": "emailComplaintToMVRentBoard", + "name": "Email Complaint to Mountain View Rent Board", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889192, + "targetCustomFieldID": 6170711, + "behavior": 0, + "parameterCustomFieldID": 6170704, + "whenTestType": 1, + "whenParameter": "Mountain View" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170717, + "fieldSelector": "afterTrialTaskList", + "name": "After Trial Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889195, + "targetCustomFieldID": 6170717, + "behavior": 0, + "parameterCustomFieldID": 6072934, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 83, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170899, + "fieldSelector": "requestForBirthdatesEmailMonterey", + "name": "Request for Birthdates Email (Monterey)", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2895123, + "targetCustomFieldID": 6170899, + "behavior": 0, + "parameterCustomFieldID": 6170104, + "whenTestType": 1, + "whenParameter": "Monterey" + } + ], + "row": 121, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170900, + "fieldSelector": "requestForBirthdatesEmailSacramento", + "name": "Request for Birthdates Email (Sacramento)", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2895124, + "targetCustomFieldID": 6170900, + "behavior": 0, + "parameterCustomFieldID": 6170104, + "whenTestType": 1, + "whenParameter": "Sacramento" + } + ], + "row": 121, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170901, + "fieldSelector": "birthdatesEnteredSac", + "name": "Birthdates Entered? (Sac)", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2895125, + "targetCustomFieldID": 6170901, + "behavior": 0, + "parameterCustomFieldID": 6170104, + "whenTestType": 1, + "whenParameter": "Sacramento" + } + ], + "row": 121, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170917, + "fieldSelector": "birthdatesEnteredMonterey", + "name": "Birthdates Entered? (Monterey)", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2895126, + "targetCustomFieldID": 6170917, + "behavior": 0, + "parameterCustomFieldID": 6170104, + "whenTestType": 1, + "whenParameter": "Monterey" + } + ], + "row": 121, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170969, + "fieldSelector": "lockoutDate", + "name": "Lockout Date", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2889350, + "targetCustomFieldID": 6170969, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 134, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172483, + "fieldSelector": "writOfMandateFiled", + "name": "Writ of Mandate Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 153, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172484, + "fieldSelector": "appealFiled", + "name": "Appeal Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 155, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172485, + "fieldSelector": "petitionForWritOfMandate", + "name": "Petition for Writ of Mandate", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2890342, + "targetCustomFieldID": 6172485, + "behavior": 0, + "parameterCustomFieldID": 6172483, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 152, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172486, + "fieldSelector": "appeals", + "name": "Appeals", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2890343, + "targetCustomFieldID": 6172486, + "behavior": 0, + "parameterCustomFieldID": 6172484, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 154, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172487, + "fieldSelector": "petitionForWritOfMandateChecklist", + "name": "Petition for Writ of Mandate Checklist", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890345, + "targetCustomFieldID": 6172487, + "behavior": 0, + "parameterCustomFieldID": 6172483, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 153, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172488, + "fieldSelector": "appealFiledChecklist", + "name": "Appeal Filed Checklist", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890346, + "targetCustomFieldID": 6172488, + "behavior": 0, + "parameterCustomFieldID": 6172484, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 155, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172506, + "fieldSelector": "stays", + "name": "Stays", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 140, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172507, + "fieldSelector": "receivedNoticeOfRequestForStay", + "name": "Received Notice of request for Stay?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890379, + "targetCustomFieldID": 6172507, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "judg" + } + ], + "row": 142, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172509, + "fieldSelector": "hearingDateOnRequestForStay", + "name": "Hearing Date on Request for Stay", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2890380, + "targetCustomFieldID": 6172509, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 143, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172511, + "fieldSelector": "addressForStayRequest", + "name": "AddressForStayRequest", + "dropdownItems": [ + "191 N. 1st Street, San Jose, CA 95113" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890382, + "targetCustomFieldID": 6172511, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 143, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172512, + "fieldSelector": "timeForStayRequest", + "name": "Time for Stay Request", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890385, + "targetCustomFieldID": 6172512, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 143, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172513, + "fieldSelector": "deptForStayRequest", + "name": "Dept For Stay Request", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890387, + "targetCustomFieldID": 6172513, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 143, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172516, + "fieldSelector": "emailClientAboutRequestForStay", + "name": "Email Client about Request for Stay", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891047, + "targetCustomFieldID": 6172516, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 144, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172517, + "fieldSelector": "stayGranted", + "name": "Stay Granted?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890391, + "targetCustomFieldID": 6172517, + "behavior": 0, + "parameterCustomFieldID": 6172507, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 145, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172518, + "fieldSelector": "stayGrantedThroughDate", + "name": "Stay Granted Through Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2890392, + "targetCustomFieldID": 6172518, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 145, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172519, + "fieldSelector": "totalStayFundsPaidToCourt", + "name": "Total Stay Funds Paid to Court", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2890694, + "targetCustomFieldID": 6172519, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 145, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172520, + "fieldSelector": "stayGrantedEmail", + "name": "Stay Granted Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891048, + "targetCustomFieldID": 6172520, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 145, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173007, + "fieldSelector": "followUpOnStipulationComp", + "name": "Follow Up on Stipulation Compliance Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2890711, + "targetCustomFieldID": 6173007, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stip" + } + ], + "row": 108, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173010, + "fieldSelector": "secondFollowUpOnStipulation", + "name": "Second Follow Up on Stipulation Compliance Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891039, + "targetCustomFieldID": 6173010, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Stip" + } + ], + "row": 108, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173067, + "fieldSelector": "prepareStayFundsReturnLetter", + "name": "Prepare Stay Funds Return Letter", + "dropdownItems": [], + "customFieldType": "DocGen", + "behaviors": [ + { + "id": 2890791, + "targetCustomFieldID": 6173067, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 146, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173068, + "fieldSelector": "stayFundsReturningInCheck", + "name": "Stay Funds Returning in the Check", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2890794, + "targetCustomFieldID": 6173068, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 146, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173069, + "fieldSelector": "stayFundsReturnCheckNumber", + "name": "StayFundsReturnCheckNumber", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890796, + "targetCustomFieldID": 6173069, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 146, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6174192, + "fieldSelector": "prepareNoticeOfEntryOfJudg", + "name": "Prepare Notice of Entry of Judgment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893260, + "targetCustomFieldID": 6174192, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judg" + } + ], + "row": 117, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177664, + "fieldSelector": "sendCancellationEmailToSheriff", + "name": "Send Cancellation Email to Sheriff", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893853, + "targetCustomFieldID": 6177664, + "behavior": 0, + "parameterCustomFieldID": 6178398, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 136, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177665, + "fieldSelector": "emailClientAboutBKFIling", + "name": "Email client about BK FIling", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893346, + "targetCustomFieldID": 6177665, + "behavior": 0, + "parameterCustomFieldID": 6092894, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 26, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177667, + "fieldSelector": "isThisAContinuedCourtDate", + "name": "Is this a continued Court Date?", + "dropdownItems": [ + "Continued Trial Date", + "Continued Trial and MSC Date" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893348, + "targetCustomFieldID": 6177667, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 75, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177668, + "fieldSelector": "mTQResult", + "name": "MTQ Result", + "dropdownItems": [ + "Motion Denied", + "Motion Denied as Moot (Defendant Served)", + "Motion Granted" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893353, + "targetCustomFieldID": 6177668, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 32, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177669, + "fieldSelector": "mTQDeniedResultEmail", + "name": "MTQ Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893355, + "targetCustomFieldID": 6177669, + "behavior": 0, + "parameterCustomFieldID": 6177668, + "whenTestType": 1, + "whenParameter": "Motion Denied" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177670, + "fieldSelector": "mTQDeniedServedResultEmail", + "name": "MTQ Denied Served Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893356, + "targetCustomFieldID": 6177670, + "behavior": 0, + "parameterCustomFieldID": 6177668, + "whenTestType": 1, + "whenParameter": "Motion Denied as Moot (Defendant Served)" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177671, + "fieldSelector": "mTQGrantedResultEmail", + "name": "MTQ Granted Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893357, + "targetCustomFieldID": 6177671, + "behavior": 0, + "parameterCustomFieldID": 6177668, + "whenTestType": 1, + "whenParameter": "Motion Granted" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177672, + "fieldSelector": "nOEOrderOnMTQ", + "name": "NOE Order on MTQ", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893361, + "targetCustomFieldID": 6177672, + "behavior": 0, + "parameterCustomFieldID": 6177668, + "whenTestType": 3, + "whenParameter": "Denied" + } + ], + "row": 32, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177673, + "fieldSelector": "prepareMTQFileCover", + "name": "Prepare MTQ File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893362, + "targetCustomFieldID": 6177673, + "behavior": 0, + "parameterCustomFieldID": 6072752, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 31, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177674, + "fieldSelector": "prepareMTSFileCover", + "name": "Prepare MTS File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893364, + "targetCustomFieldID": 6177674, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 36, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177675, + "fieldSelector": "mTSResult", + "name": "MTS Result", + "dropdownItems": [ + "Motion Denied", + "Motion Granted" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893365, + "targetCustomFieldID": 6177675, + "behavior": 0, + "parameterCustomFieldID": 6072753, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 37, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177676, + "fieldSelector": "mTSDeniedResultEmail", + "name": "MTS Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893367, + "targetCustomFieldID": 6177676, + "behavior": 0, + "parameterCustomFieldID": 6177675, + "whenTestType": 1, + "whenParameter": "Motion Denied" + } + ], + "row": 37, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177677, + "fieldSelector": "mTSGrantedResultEmail", + "name": "MTS Granted Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893380, + "targetCustomFieldID": 6177677, + "behavior": 0, + "parameterCustomFieldID": 6177675, + "whenTestType": 1, + "whenParameter": "Motion Granted" + } + ], + "row": 37, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177681, + "fieldSelector": "nOEOrderOnMTS", + "name": "NOE Order on MTS", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893370, + "targetCustomFieldID": 6177681, + "behavior": 0, + "parameterCustomFieldID": 6177675, + "whenTestType": 1, + "whenParameter": "Motion Denied" + } + ], + "row": 37, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177687, + "fieldSelector": "prepareDemurrerFileCover", + "name": "Prepare Demurrer File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893701, + "targetCustomFieldID": 6177687, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 41, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177688, + "fieldSelector": "demurrerResult", + "name": "Demurrer Result", + "dropdownItems": [ + "Demurrer Overruled", + "Demurrer Granted with Leave", + "Demurrer Granted without Leave" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893374, + "targetCustomFieldID": 6177688, + "behavior": 0, + "parameterCustomFieldID": 6072754, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 42, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177689, + "fieldSelector": "demurrerOverruledResultEmai", + "name": "Demurrer Overruled Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893375, + "targetCustomFieldID": 6177689, + "behavior": 0, + "parameterCustomFieldID": 6177688, + "whenTestType": 1, + "whenParameter": "Demurrer Overruled" + } + ], + "row": 42, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177691, + "fieldSelector": "demurrerGrantedWithLeaveEmail", + "name": "Demurrer Granted with Leave Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893379, + "targetCustomFieldID": 6177691, + "behavior": 0, + "parameterCustomFieldID": 6177688, + "whenTestType": 3, + "whenParameter": "with Leave" + } + ], + "row": 42, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177692, + "fieldSelector": "demurrerGrantedWithoutLeaveEmail", + "name": "Demurrer Granted without Leave Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893381, + "targetCustomFieldID": 6177692, + "behavior": 0, + "parameterCustomFieldID": 6177688, + "whenTestType": 3, + "whenParameter": "without Leave" + } + ], + "row": 42, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6177693, + "fieldSelector": "nOEOrderOnDemurrer", + "name": "NOE Order on Demurrer", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893382, + "targetCustomFieldID": 6177693, + "behavior": 0, + "parameterCustomFieldID": 6177688, + "whenTestType": 3, + "whenParameter": "Overruled" + } + ], + "row": 42, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178330, + "fieldSelector": "prepareMSJFileCover", + "name": "Prepare MSJ File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893700, + "targetCustomFieldID": 6178330, + "behavior": 0, + "parameterCustomFieldID": 6168941, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 61, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178331, + "fieldSelector": "mSJResult", + "name": "MSJ Result", + "dropdownItems": [ + "MSJ Granted", + "MSJ Denied" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 61, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178332, + "fieldSelector": "mSJGrantedResultEmail", + "name": "MSJ Granted Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893702, + "targetCustomFieldID": 6178332, + "behavior": 0, + "parameterCustomFieldID": 6178331, + "whenTestType": 1, + "whenParameter": "MSJ Granted" + } + ], + "row": 61, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178333, + "fieldSelector": "mSJDeniedResultEmail", + "name": "MSJ Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893703, + "targetCustomFieldID": 6178333, + "behavior": 0, + "parameterCustomFieldID": 6178331, + "whenTestType": 1, + "whenParameter": "MSJ Denied" + } + ], + "row": 61, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178334, + "fieldSelector": "mTSAFiledEmail", + "name": "MTSA Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893704, + "targetCustomFieldID": 6178334, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 89, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178335, + "fieldSelector": "prepareMTSAFileCover", + "name": "Prepare MTSA File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893705, + "targetCustomFieldID": 6178335, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 89, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178336, + "fieldSelector": "mTSAResult", + "name": "MTSA Result", + "dropdownItems": [ + "Motion Denied", + "Motion Granted; Answer Deemed Filed", + "Motion Granted; Answer Due", + "Motion Granted; Trial Date Set" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893706, + "targetCustomFieldID": 6178336, + "behavior": 0, + "parameterCustomFieldID": 6072956, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 90, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178337, + "fieldSelector": "mTSADeniedResultEmail", + "name": "MTSA Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893707, + "targetCustomFieldID": 6178337, + "behavior": 0, + "parameterCustomFieldID": 6178336, + "whenTestType": 3, + "whenParameter": "Denied" + } + ], + "row": 90, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178338, + "fieldSelector": "mTSAGrantedNewTrialResult", + "name": "MTSA Granted New Trial Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893708, + "targetCustomFieldID": 6178338, + "behavior": 0, + "parameterCustomFieldID": 6178336, + "whenTestType": 3, + "whenParameter": "Trial" + } + ], + "row": 90, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178339, + "fieldSelector": "mTSAGrantedAnswerDeemedTrialSet", + "name": "MTSA Granted Answer Deemed Trial Set Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893709, + "targetCustomFieldID": 6178339, + "behavior": 0, + "parameterCustomFieldID": 6178336, + "whenTestType": 3, + "whenParameter": "Answer Deemed" + } + ], + "row": 90, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178340, + "fieldSelector": "mTSAGrantedAnswerDeemedRequestTrial", + "name": "MTSA Granted Answer Deemed Request Trial Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893715, + "targetCustomFieldID": 6178340, + "behavior": 0, + "parameterCustomFieldID": 6178336, + "whenTestType": 3, + "whenParameter": "Answer deemed" + } + ], + "row": 90, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178341, + "fieldSelector": "mTSAGrantedAnswerDueResult", + "name": "MTSA Granted Answer Due Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893712, + "targetCustomFieldID": 6178341, + "behavior": 0, + "parameterCustomFieldID": 6178336, + "whenTestType": 3, + "whenParameter": "Answer Due" + } + ], + "row": 90, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178342, + "fieldSelector": "stayDeniedEmail", + "name": "Stay Denied Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893714, + "targetCustomFieldID": 6178342, + "behavior": 0, + "parameterCustomFieldID": 6172517, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 145, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178350, + "fieldSelector": "cOPResult", + "name": "COP Result", + "dropdownItems": [ + "Claim Denied", + "Claim Granted" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893717, + "targetCustomFieldID": 6178350, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 97, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178351, + "fieldSelector": "cOPDeniedResultEmail", + "name": "COP Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893718, + "targetCustomFieldID": 6178351, + "behavior": 0, + "parameterCustomFieldID": 6178350, + "whenTestType": 1, + "whenParameter": "Claim Denied" + } + ], + "row": 97, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178352, + "fieldSelector": "cOPGrantedResultEmail", + "name": "COP Granted Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893719, + "targetCustomFieldID": 6178352, + "behavior": 0, + "parameterCustomFieldID": 6178350, + "whenTestType": 1, + "whenParameter": "Claim Granted" + } + ], + "row": 97, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178353, + "fieldSelector": "prepareCOPFIleCover", + "name": "Prepare COP FIle Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893885, + "targetCustomFieldID": 6178353, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 96, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178354, + "fieldSelector": "resultOfExParteAppForJudgment", + "name": "Result of Ex Parte App for Judgment", + "dropdownItems": [ + "Judgment Entered", + "Application Continued", + "Application Denied" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893722, + "targetCustomFieldID": 6178354, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 112, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178355, + "fieldSelector": "appForJudgmentEnteredResult", + "name": "App for Judgment Entered Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893723, + "targetCustomFieldID": 6178355, + "behavior": 0, + "parameterCustomFieldID": 6178354, + "whenTestType": 3, + "whenParameter": "Entered" + } + ], + "row": 112, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178356, + "fieldSelector": "appForJudgmentContinuedResult", + "name": "App for Judgment Continued Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893724, + "targetCustomFieldID": 6178356, + "behavior": 0, + "parameterCustomFieldID": 6178354, + "whenTestType": 3, + "whenParameter": "continued" + } + ], + "row": 112, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178357, + "fieldSelector": "appForJudgmentDeniedResult", + "name": "App for Judgment Denied Result Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893725, + "targetCustomFieldID": 6178357, + "behavior": 0, + "parameterCustomFieldID": 6178354, + "whenTestType": 3, + "whenParameter": "denied" + } + ], + "row": 112, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178358, + "fieldSelector": "prepareAppForJudgmentFileCover", + "name": "Prepare App for Judgment File Cover", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893727, + "targetCustomFieldID": 6178358, + "behavior": 0, + "parameterCustomFieldID": 6073212, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 110, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178360, + "fieldSelector": "2ndServerForPMO", + "name": "2nd Server for PMO", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2893729, + "targetCustomFieldID": 6178360, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178361, + "fieldSelector": "3rdServerForPMO", + "name": "3rd Server for PMO", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2893730, + "targetCustomFieldID": 6178361, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 15, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178362, + "fieldSelector": "PMOSigner", + "name": "Who will sign PMO for Plaintiff", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2893733, + "targetCustomFieldID": 6178362, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 15, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178363, + "fieldSelector": "pMOSignedType", + "name": "PMO Signer Type", + "dropdownItems": [ + "owner", + "manager" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893734, + "targetCustomFieldID": 6178363, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 15, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178364, + "fieldSelector": "applicationForPMO", + "name": "Application for PMO", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893739, + "targetCustomFieldID": 6178364, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 16, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178365, + "fieldSelector": "declarationISOPMO", + "name": "Declaration ISO PMO", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893741, + "targetCustomFieldID": 6178365, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 16, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178366, + "fieldSelector": "orderOnPMO", + "name": "Order on PMO", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893744, + "targetCustomFieldID": 6178366, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 16, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178367, + "fieldSelector": "pMO", + "name": "PMO", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2893742, + "targetCustomFieldID": 6178367, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178390, + "fieldSelector": "selectCountyThatRequiresRelease", + "name": "Select County that Requires Additional Sheriff Forms", + "dropdownItems": [ + "Alameda (EWD)", + "San Francisco (SF-LW)", + "Lake (LW)", + "San Joaquin (LW)", + "Contra Costa (CC-Inst)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895140, + "targetCustomFieldID": 6178390, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 126, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178391, + "fieldSelector": "prepareSheriffSReleaseOfLiability", + "name": "Prepare Sheriff's Release of Liability", + "dropdownItems": [], + "customFieldType": "DocGen", + "behaviors": [ + { + "id": 2894970, + "targetCustomFieldID": 6178391, + "behavior": 0, + "parameterCustomFieldID": 6178390, + "whenTestType": 3, + "whenParameter": "(LW)" + } + ], + "row": 127, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178392, + "fieldSelector": "prepareSFSheriffAttachment", + "name": "Prepare SF Sheriff Attachment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894971, + "targetCustomFieldID": 6178392, + "behavior": 0, + "parameterCustomFieldID": 6178390, + "whenTestType": 3, + "whenParameter": "(SF-LW)" + } + ], + "row": 127, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178393, + "fieldSelector": "selectCountyRequiringDeclDailyRentOrLostOs", + "name": "Select County that Requires Declaration of Daily Rent or Lost Original", + "dropdownItems": [ + "San Francisco (DDR) (DLO)", + "San Mateo (DDR)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2894940, + "targetCustomFieldID": 6178393, + "behavior": 0, + "parameterCustomFieldID": 6072774, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 22, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178394, + "fieldSelector": "prepareDeclOfDailyRentalVale", + "name": "Prepare Decl of Daily Rental Value", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894942, + "targetCustomFieldID": 6178394, + "behavior": 0, + "parameterCustomFieldID": 6178393, + "whenTestType": 3, + "whenParameter": "(DDR)" + } + ], + "row": 22, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178396, + "fieldSelector": "prepareElectronicWritDecl", + "name": "Prepare Electronic Writ Declaration", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894973, + "targetCustomFieldID": 6178396, + "behavior": 0, + "parameterCustomFieldID": 6178390, + "whenTestType": 3, + "whenParameter": "(EWD)" + } + ], + "row": 127, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178397, + "fieldSelector": "prepareDeclarationOfLostOriginals", + "name": "Prepare Declaration of Lost Originals", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894943, + "targetCustomFieldID": 6178397, + "behavior": 0, + "parameterCustomFieldID": 6178393, + "whenTestType": 3, + "whenParameter": "(DLO)" + } + ], + "row": 22, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178398, + "fieldSelector": "sheriffCancelHoldPostpone", + "name": "Sheriff Cancel/ Hold/ Postpone", + "dropdownItems": [ + "Cancel", + "Hold", + "Postpone" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893848, + "targetCustomFieldID": 6178398, + "behavior": 0, + "parameterCustomFieldID": 6073226, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 136, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178399, + "fieldSelector": "postponeSheriffToo", + "name": "Postpone Sheriff To", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2893850, + "targetCustomFieldID": 6178399, + "behavior": 0, + "parameterCustomFieldID": 6178398, + "whenTestType": 1, + "whenParameter": "Postpone" + } + ], + "row": 136, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178400, + "fieldSelector": "prepareSheriffCancelLetter", + "name": "Prepare Sheriff Cancel/ Hold/ Postpone Letter", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893854, + "targetCustomFieldID": 6178400, + "behavior": 0, + "parameterCustomFieldID": 6178398, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 136, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178402, + "fieldSelector": "preJudgmentClaimOfPossessionFiled", + "name": "Pre-Judgment Claim of Possession Filed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2893863, + "targetCustomFieldID": 6178402, + "behavior": 0, + "parameterCustomFieldID": 6072766, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 43, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178403, + "fieldSelector": "nameOfPreJudgmentClaimants", + "name": "Name of Pre-Judgment Claimant(s)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2893868, + "targetCustomFieldID": 6178403, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 44, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178404, + "fieldSelector": "prepareAppToStrikePreJudgmentClaim", + "name": "Prepare App to Strike Pre-Judgment Claim", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893874, + "targetCustomFieldID": 6178404, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 45, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178405, + "fieldSelector": "prepareOderOnPreJudgmentClaim", + "name": "Prepare Oder on Pre-Judgment Claim (CASE AT ISSUE??)", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893875, + "targetCustomFieldID": 6178405, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 45, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178406, + "fieldSelector": "preJudgmentClaimTaskList", + "name": "Pre-Judgment Claim Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893869, + "targetCustomFieldID": 6178406, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 44, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178407, + "fieldSelector": "preJudgmentClaimOfPossessi", + "name": "Pre-Judgment Claim of Possession Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893877, + "targetCustomFieldID": 6178407, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 44, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178408, + "fieldSelector": "resultOfPreJudgmentClaim", + "name": "Result of Pre-Judgment Claim (what and when)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2893873, + "targetCustomFieldID": 6178408, + "behavior": 0, + "parameterCustomFieldID": 6178402, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 45, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178409, + "fieldSelector": "claimantS", + "name": "Claimaint(s)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2893882, + "targetCustomFieldID": 6178409, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 92, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178410, + "fieldSelector": "cOPFiledEmail", + "name": "COP Filed Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 95, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178411, + "fieldSelector": "prepareOrderDenyingClaim", + "name": "Prepare Order Denying Claim", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893883, + "targetCustomFieldID": 6178411, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 95, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178412, + "fieldSelector": "prepareStipToOrderDenying", + "name": "Prepare Stip to Order Denying Claim", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893884, + "targetCustomFieldID": 6178412, + "behavior": 0, + "parameterCustomFieldID": 6072958, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 95, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178416, + "fieldSelector": "selectCountyFromChallengeList", + "name": "Select County from Challenge List if Applicable", + "dropdownItems": [ + "Santa Clara (Dept __, Zepeda)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2894951, + "targetCustomFieldID": 6178416, + "behavior": 0, + "parameterCustomFieldID": 6072934, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 70, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178417, + "fieldSelector": "preparePreemptoryChallenge", + "name": "Prepare Preemptory Challenge", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893893, + "targetCustomFieldID": 6178417, + "behavior": 0, + "parameterCustomFieldID": 6178416, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 70, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178419, + "fieldSelector": "prepareChallengeOrder", + "name": "Prepare Challenge Order", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2893896, + "targetCustomFieldID": 6178419, + "behavior": 0, + "parameterCustomFieldID": 6178416, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 70, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178421, + "fieldSelector": "prepareOtherDocument2", + "name": "Prepare Other Document 2", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [], + "row": 156, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178422, + "fieldSelector": "countiesToRequestRemoteAppearance", + "name": "Counties to Request Remote Appearance", + "dropdownItems": [ + "Glenn (RRA)", + "Fresno (RRA)", + "Nevada (RRA)", + "San Luis Obispo (RRA)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895060, + "targetCustomFieldID": 6178422, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 66, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178423, + "fieldSelector": "prepareNoticeOfRemoteAppearance", + "name": "Prepare Notice of Remote Appearance", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893901, + "targetCustomFieldID": 6178423, + "behavior": 0, + "parameterCustomFieldID": 6178422, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 66, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178424, + "fieldSelector": "prepareOrderOnRemoteAppearance", + "name": "Prepare Order on Remote Appearance", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893905, + "targetCustomFieldID": 6178424, + "behavior": 0, + "parameterCustomFieldID": 6178422, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 66, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178428, + "fieldSelector": "prepareNoticeOfNewTrial", + "name": "Prepare Notice of New Trial", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2893911, + "targetCustomFieldID": 6178428, + "behavior": 0, + "parameterCustomFieldID": 6177667, + "whenTestType": 3, + "whenParameter": "Continued" + } + ], + "row": 75, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178433, + "fieldSelector": "sMCZoomTrialReminderEmail", + "name": "SMC Zoom Trial Reminder Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893916, + "targetCustomFieldID": 6178433, + "behavior": 0, + "parameterCustomFieldID": 6170104, + "whenTestType": 1, + "whenParameter": "San Mateo" + } + ], + "row": 76, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178434, + "fieldSelector": "rARReceivedEmail", + "name": "RAR Received Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893917, + "targetCustomFieldID": 6178434, + "behavior": 0, + "parameterCustomFieldID": 6092892, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 25, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180057, + "fieldSelector": "selectCountiesTheRequireCa", + "name": "Select Counties the Require Case Access Email (CAE)", + "dropdownItems": [ + "Solano (CAE)", + "Marin (CAE)", + "Nevada (CAE)" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180058, + "fieldSelector": "sendCaseAccessEmail", + "name": "Send Case Access Email", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2894939, + "targetCustomFieldID": 6180058, + "behavior": 0, + "parameterCustomFieldID": 6180057, + "whenTestType": 3, + "whenParameter": "(CAE)" + } + ], + "row": 5, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180068, + "fieldSelector": "prepareCoCoSheriffAttachment1to5", + "name": "Prepare Contra Costa Sheriff Attachment (1-5 Defendants)", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895131, + "targetCustomFieldID": 6180068, + "behavior": 0, + "parameterCustomFieldID": 6180181, + "whenTestType": 3, + "whenParameter": "1-5 defendants" + } + ], + "row": 128, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180069, + "fieldSelector": "selectCountyThatRequiresAdditionalPMOForm", + "name": "Select County that Requires additional PMO Form", + "dropdownItems": [ + "Santa Clara County (OrdCS)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895068, + "targetCustomFieldID": 6180069, + "behavior": 0, + "parameterCustomFieldID": 6072775, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 17, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180070, + "fieldSelector": "prepareProposedOrderCoverSheet", + "name": "Prepare Proposed Order Cover Sheet", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2894984, + "targetCustomFieldID": 6180070, + "behavior": 0, + "parameterCustomFieldID": 6180069, + "whenTestType": 3, + "whenParameter": "(OrdCS)" + } + ], + "row": 17, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180112, + "fieldSelector": "lockoutSafetyIssuesOrSpecialCareIssues", + "name": "Lockout Safety Issues or Special Care Issues", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2895043, + "targetCustomFieldID": 6180112, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 118, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180125, + "fieldSelector": "haveAnyFeesBeenWaived", + "name": "Have any fees been waived by the Court?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2895055, + "targetCustomFieldID": 6180125, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 64, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180126, + "fieldSelector": "whoSFeesWereWaived", + "name": "Who's fees were waived", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [ + { + "id": 2895056, + "targetCustomFieldID": 6180126, + "behavior": 0, + "parameterCustomFieldID": 6180125, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 64, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180127, + "fieldSelector": "prepareDismissalOfDoesAfterAnswer", + "name": "Prepare Dismissal of Does After Answer", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895062, + "targetCustomFieldID": 6180127, + "behavior": 0, + "parameterCustomFieldID": 6072756, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 64, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180129, + "fieldSelector": "didTheCourtSetAnInitialOSC", + "name": "Did the Court set an Initial OSC?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 6, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180130, + "fieldSelector": "earlyOSCTaskList", + "name": "Early OSC Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2895069, + "targetCustomFieldID": 6180130, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180131, + "fieldSelector": "oSCResponseDuePOSAnyFiling", + "name": "OSC Response Due (POS, any filing)", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [ + { + "id": 2895070, + "targetCustomFieldID": 6180131, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180132, + "fieldSelector": "initialOSCHearingDate", + "name": "Initial OSC Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2895073, + "targetCustomFieldID": 6180132, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 7, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180133, + "fieldSelector": "initialOSCHearingTime", + "name": "Initial OSC Hearing Time", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2895072, + "targetCustomFieldID": 6180133, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180134, + "fieldSelector": "initialOSCHearingDeptDiv", + "name": "Initial OSC Hearing Dept/ Div", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2895074, + "targetCustomFieldID": 6180134, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180135, + "fieldSelector": "initialOSCHearingAddress", + "name": "Initial OSC Hearing Address", + "dropdownItems": [], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895075, + "targetCustomFieldID": 6180135, + "behavior": 0, + "parameterCustomFieldID": 6180129, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 7, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180176, + "fieldSelector": "howManyDefendantsOnWrit", + "name": "How many defendants are being evicted (listed on writ)", + "dropdownItems": [ + "ONE (1) (No additional SER pages needed)", + "TWO (2)", + "THREE (3)", + "FOUR (4)", + "FIVE(5)", + "SIX (6)", + "SEVEN (7)", + "EIGHT (8)", + "NINE (9)", + "TEN (10)", + "ELEVEN (11)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895105, + "targetCustomFieldID": 6180176, + "behavior": 0, + "parameterCustomFieldID": 6072936, + "whenTestType": 3, + "whenParameter": "Judgment" + } + ], + "row": 120, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180180, + "fieldSelector": "prepareContraCostaCountySheriffAttach6to11", + "name": "Prepare Contra Costa Sheriff Attachment (6-11 defendants)", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895132, + "targetCustomFieldID": 6180180, + "behavior": 0, + "parameterCustomFieldID": 6178390, + "whenTestType": 3, + "whenParameter": "6-11 defendants" + } + ], + "row": 128, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180181, + "fieldSelector": "selectAppropriateContraCostaSheriffAttachment", + "name": "Select Appropriate Contra Costa Sheriff Attachment", + "dropdownItems": [ + "Writ names 1-5 defendants", + "Writ names 6-11 defendants" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895107, + "targetCustomFieldID": 6180181, + "behavior": 0, + "parameterCustomFieldID": 6178390, + "whenTestType": 3, + "whenParameter": "Contra Costa" + } + ], + "row": 128, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180182, + "fieldSelector": "prepareONEAdditionalDefSERAttach", + "name": "Prepare ONE Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895145, + "targetCustomFieldID": 6180182, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "TWO (2)" + } + ], + "row": 123, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180183, + "fieldSelector": "prepareTWOAdditionalDefSERAttach", + "name": "Prepare TWO Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895144, + "targetCustomFieldID": 6180183, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "THREE (3)" + } + ], + "row": 123, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180184, + "fieldSelector": "prepareTHREEAdditionalDefen", + "name": "Prepare THREE Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895113, + "targetCustomFieldID": 6180184, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "FOUR (4)" + } + ], + "row": 123, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180185, + "fieldSelector": "prepareFOURAdditionalDefSERAttach", + "name": "Prepare FOUR Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895142, + "targetCustomFieldID": 6180185, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "FIVE (5)" + } + ], + "row": 124, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180186, + "fieldSelector": "prepareSIXAdditionalDefSERAttach", + "name": "Prepare SIX Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895141, + "targetCustomFieldID": 6180186, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "SEVEN (7)" + } + ], + "row": 124, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180187, + "fieldSelector": "prepareSEVENAdditionalDefSERAttach", + "name": "Prepare SEVEN Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895139, + "targetCustomFieldID": 6180187, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "EIGHT (8)" + } + ], + "row": 125, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180189, + "fieldSelector": "prepareEIGHTAdditionalDefSERAttach", + "name": "Prepare EIGHT Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895138, + "targetCustomFieldID": 6180189, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "NINE (9)" + } + ], + "row": 125, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180193, + "fieldSelector": "prepareNINEAdditionalDefSERAttach", + "name": "Prepare NINE Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895137, + "targetCustomFieldID": 6180193, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "TEN (10)" + } + ], + "row": 125, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180196, + "fieldSelector": "prepareTENAdditionalDefSERAttach", + "name": "Prepare TEN Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895136, + "targetCustomFieldID": 6180196, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "ELEVEN (11)" + } + ], + "row": 125, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180213, + "fieldSelector": "prepareFIVEAdditionalSERAttach", + "name": "Prepare FIVE Additional Defendant SER-001 Attachments", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895143, + "targetCustomFieldID": 6180213, + "behavior": 0, + "parameterCustomFieldID": 6180176, + "whenTestType": 3, + "whenParameter": "SIX (6)" + } + ], + "row": 124, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6183173, + "fieldSelector": "selectCountySpecificLockoutInfoEmail", + "name": "Select County Specific Lockout information Email Template", + "dropdownItems": [ + "Week Scheduled, Sheriff to Call with Date", + "Date and Time Provided", + "Date provided, you must Call" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2896969, + "targetCustomFieldID": 6183173, + "behavior": 0, + "parameterCustomFieldID": 6073226, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 134, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/datesAndDeadlines" + } + }, + { + "sectionSelector": "defendants", + "isCollection": true, + "name": "Defendants", + "customFields": [ + { + "id": 6059912, + "fieldSelector": "defendantContact", + "name": "Defendant Contact", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059913, + "fieldSelector": "defendantStatus", + "name": "Defendant Status", + "dropdownItems": [ + "Not Served", + "Served", + "Answered or Responded", + "Default Pending", + "Default Entered", + "Stipulation", + "Judgment Entered", + "Vacated", + "Dismissed" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059918, + "fieldSelector": "defendantServiceType", + "name": "Defendant - Type of Service", + "dropdownItems": [ + "Personal Service", + "Substituted Service", + "Post and Mail" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071895, + "fieldSelector": "defendantDateOfService", + "name": "Defendant - Date of Service", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071896, + "fieldSelector": "defendantTimeOfService", + "name": "Defendant - Time of Service", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 6, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071897, + "fieldSelector": "defendantServedByWhom", + "name": "Defendant - Served by Whom", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072267, + "fieldSelector": "attorneyForDef", + "name": "Attorney for Def", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072268, + "fieldSelector": "serviceInfo", + "name": "Service Info", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072271, + "fieldSelector": "serviceDateOfMailing", + "name": "Service Date of Mailing", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837052, + "targetCustomFieldID": 6072271, + "behavior": 1, + "parameterCustomFieldID": 6059918, + "whenTestType": 3, + "whenParameter": "Personal" + } + ], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072272, + "fieldSelector": "servicePersonSubServed", + "name": "Service Person Sub Served, Name and Relationship/ Description", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2884789, + "targetCustomFieldID": 6072272, + "behavior": 0, + "parameterCustomFieldID": 6059918, + "whenTestType": 4, + "whenParameter": "Personal" + } + ], + "row": 7, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072739, + "fieldSelector": "serviceAddress", + "name": "Service Address", + "dropdownItems": [ + "Premises", + "Alternate Address" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072740, + "fieldSelector": "alternateAddressForService", + "name": "Alternate Address where Service was Attempted", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837461, + "targetCustomFieldID": 6072740, + "behavior": 0, + "parameterCustomFieldID": 6072739, + "whenTestType": 3, + "whenParameter": "Alt" + } + ], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072741, + "fieldSelector": "alternateAddressDescription", + "name": "Alternate Address Description (Who's What)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837462, + "targetCustomFieldID": 6072741, + "behavior": 0, + "parameterCustomFieldID": 6072739, + "whenTestType": 3, + "whenParameter": "Alt" + } + ], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073699, + "fieldSelector": "defendantActiveDuty", + "name": "Defendant is currently or recently on active military duty", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073702, + "fieldSelector": "militaryActiveDutySpecifics", + "name": "Military Active Duty Specifics", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2838234, + "targetCustomFieldID": 6073702, + "behavior": 0, + "parameterCustomFieldID": 6073699, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163764, + "fieldSelector": "defendantEntityType", + "name": "Defendant Entity Type (other than individual)", + "dropdownItems": [ + "Corporation", + "Partnership", + "LLC" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163765, + "fieldSelector": "personServedOnBehalfOfEntity", + "name": "Person Served on Behalf of Entity and Title or Relationship", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2884788, + "targetCustomFieldID": 6163765, + "behavior": 0, + "parameterCustomFieldID": 6163764, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 7, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163770, + "fieldSelector": "defendantsAgentForService", + "name": "Defendant's Agent for Service", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2884786, + "targetCustomFieldID": 6163770, + "behavior": 0, + "parameterCustomFieldID": 6163764, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163806, + "fieldSelector": "preparePOS", + "name": "Prepare POS", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2890305, + "targetCustomFieldID": 6163806, + "behavior": 0, + "parameterCustomFieldID": 6059918, + "whenTestType": 4, + "whenParameter": "Sub" + } + ], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163807, + "fieldSelector": "basisForNonActiveDuty", + "name": "Basis for Non-Active Duty", + "dropdownItems": [ + "Confirmed on https://scra.dmdc.osd.mil/", + "Client confirmed", + "Client to sign to confirm their knowledge" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2885450, + "targetCustomFieldID": 6163807, + "behavior": 0, + "parameterCustomFieldID": 6073699, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 4, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163817, + "fieldSelector": "preparePOSWDeclOfDiligence", + "name": "Prepare POS w/ Decl of Diligence", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2890306, + "targetCustomFieldID": 6163817, + "behavior": 0, + "parameterCustomFieldID": 6059918, + "whenTestType": 3, + "whenParameter": "Sub" + } + ], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165380, + "fieldSelector": "multipleServerDeclarationNeeded", + "name": "Multiple Server Declaration Needed?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2885401, + "targetCustomFieldID": 6165380, + "behavior": 0, + "parameterCustomFieldID": 6059918, + "whenTestType": 3, + "whenParameter": "Sub" + } + ], + "row": 10, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6165382, + "fieldSelector": "preparePOSWDeclOfDilandMultipleServers", + "name": "Prepare POS w/ Decl of Diligence AND Multiple Servers", + "dropdownItems": [], + "customFieldType": "MultiReportFusion", + "behaviors": [ + { + "id": 2890307, + "targetCustomFieldID": 6165382, + "behavior": 0, + "parameterCustomFieldID": 6165380, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 10, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170897, + "fieldSelector": "DefdateOfBirth", + "name": "Date of Birth (Sacramento & Monterey Only)", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/defendants" + } + }, + { + "sectionSelector": "feesAndCosts", + "isCollection": false, + "name": "Fees and Costs", + "customFields": [ + { + "id": 6056515, + "fieldSelector": "FeesNTC", + "name": "Attorney Fees: Notice to Cease", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056516, + "fieldSelector": "FeesMSC", + "name": "Attorney Fees: Mandatory Settlement Conference", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 18, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056517, + "fieldSelector": "FeesDiscovery", + "name": "Attorney Fees: Discovery", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056519, + "fieldSelector": "attorneyFeesOther1Type", + "name": "Attorney Fees: Other 1 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 19, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056520, + "fieldSelector": "attorneyFeesOther1Amount", + "name": "Attorney Fees: Other 1 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 19, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056522, + "fieldSelector": "attorneyFeesOther2Type", + "name": "Attorney Fees: Other 2 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851102, + "targetCustomFieldID": 6056522, + "behavior": 0, + "parameterCustomFieldID": 6056520, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 20, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056523, + "fieldSelector": "attorneyFeesOther2Amount", + "name": "Attorney Fees: Other 2 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851103, + "targetCustomFieldID": 6056523, + "behavior": 0, + "parameterCustomFieldID": 6056520, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 20, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056525, + "fieldSelector": "attorneyFeesOther3Type", + "name": "Attorney Fees: Other 3 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851104, + "targetCustomFieldID": 6056525, + "behavior": 0, + "parameterCustomFieldID": 6056523, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 21, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056526, + "fieldSelector": "attorneyFeesOther3Amount", + "name": "Attorney Fees: Other 3 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851105, + "targetCustomFieldID": 6056526, + "behavior": 0, + "parameterCustomFieldID": 6056523, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 21, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056529, + "fieldSelector": "costsServiceOfNotice", + "name": "Costs: Service of Notice", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 31, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056530, + "fieldSelector": "costsFilingFee", + "name": "Costs: Initial Case Filing Fee", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 36, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056531, + "fieldSelector": "costsEFiling", + "name": "Costs: Unlimited E-Filing", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 42, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056532, + "fieldSelector": "costsProcessServerFee", + "name": "Costs: Service of Summons", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 31, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056533, + "fieldSelector": "costsOther1Type", + "name": "Costs: Other 1 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 39, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056534, + "fieldSelector": "costsOther1Amount", + "name": "Costs: Other 1 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 39, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056535, + "fieldSelector": "costsOther2Type", + "name": "Costs: Other 2 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851111, + "targetCustomFieldID": 6056535, + "behavior": 0, + "parameterCustomFieldID": 6056534, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 40, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056537, + "fieldSelector": "costsOther2Amount", + "name": "Costs: Other 2 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851112, + "targetCustomFieldID": 6056537, + "behavior": 0, + "parameterCustomFieldID": 6056534, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 40, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056542, + "fieldSelector": "costsOther3Type", + "name": "Costs: Other 3 Type", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2851113, + "targetCustomFieldID": 6056542, + "behavior": 0, + "parameterCustomFieldID": 6056537, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 41, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056543, + "fieldSelector": "costsOther3Amount", + "name": "Costs: Other 3 Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851114, + "targetCustomFieldID": 6056543, + "behavior": 0, + "parameterCustomFieldID": 6056537, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 41, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096248, + "fieldSelector": "baseFeeIncome", + "name": "Base Fee Income", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096249, + "fieldSelector": "residentialNonpaymentOfRent", + "name": "UD Base Fee: Residential Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096250, + "fieldSelector": "residentialNonmonetary", + "name": "UD Base Fee: Residential Nonmonetary", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851107, + "targetCustomFieldID": 6096250, + "behavior": 0, + "parameterCustomFieldID": 6096255, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096251, + "fieldSelector": "commercialNonpaymentOfRent", + "name": "UD Base Fee: Commercial Nonpayment of Rent", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096252, + "fieldSelector": "commercialNonmonetary", + "name": "UD Base Fee: Commercial Nonmonetary", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2851117, + "targetCustomFieldID": 6096252, + "behavior": 0, + "parameterCustomFieldID": 6096255, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096253, + "fieldSelector": "totalBaseFeeIncome", + "name": "Total Base Fee Income", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096254, + "fieldSelector": "addOnLitigationFees", + "name": "Pre-Filing Fees", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 13, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096255, + "fieldSelector": "noticeType", + "name": "Notice Type", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096256, + "fieldSelector": "attorneyFeesNoticeOnly", + "name": "Attorney Fees: Notice Only", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 14, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096257, + "fieldSelector": "attorneyFeesNonpaymentReviewPrep", + "name": "Attorney Fees: Nonpayment Review & Prep Only", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 14, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096258, + "fieldSelector": "attorneyFeesLetterMMO", + "name": "Attorney Fees: Letter, MMO, Contract", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096259, + "fieldSelector": "attorneyFeesTenantBuyOut", + "name": "Attorney Fees: Tenant Buy Out (agreement only)", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 15, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096260, + "fieldSelector": "totalPreFilingFees", + "name": "Total Pre-Filing Fees", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 16, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096261, + "fieldSelector": "litigationAddOns", + "name": "Litigation Add-Ons", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 17, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096262, + "fieldSelector": "attorneyFeesCOP", + "name": "Attorney Fees: Claim of Right to Possession", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 18, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096263, + "fieldSelector": "totalLitigationAddOns", + "name": "Total Litigation Add-Ons", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 22, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096264, + "fieldSelector": "juryTrialFees", + "name": "Jury Trial Fees", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 23, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096266, + "fieldSelector": "attorneyFeesJuryTrialPrep", + "name": "Attorney Fees: Jury Trial Preparation", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 24, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096267, + "fieldSelector": "attorneyFeesJuryTrialInitial", + "name": "Attorney Fees: Jury Trial Initial Payment", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 24, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096268, + "fieldSelector": "attorneyFeesJuryTrialFinal", + "name": "Attorney Fees: Jury Trial Final Payment", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2888018, + "targetCustomFieldID": 6096268, + "behavior": 0, + "parameterCustomFieldID": 6096267, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 25, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096269, + "fieldSelector": "totalJuryTrialFees", + "name": "Total Jury Trial Fees", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 26, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096270, + "fieldSelector": "attorneyFeesTotal", + "name": "Attorney Fees Total", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 27, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096271, + "fieldSelector": "totalAttorneysFees", + "name": "Total Attorney's Fees", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 28, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096272, + "fieldSelector": "costs", + "name": "==== Costs ====", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 29, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096273, + "fieldSelector": "serviceCosts", + "name": "Service Costs", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 30, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096274, + "fieldSelector": "attorneySFees", + "name": "==== Attorney's Fees ====", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096275, + "fieldSelector": "costsOtherServiceCosts", + "name": "Costs: Other Service Costs", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 31, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096276, + "fieldSelector": "otherServiceCostsDesc", + "name": "Other Service Costs Description", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2888028, + "targetCustomFieldID": 6096276, + "behavior": 0, + "parameterCustomFieldID": 6096275, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 32, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096277, + "fieldSelector": "totalServiceCosts", + "name": "Total Service Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 33, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096278, + "fieldSelector": "recoverableServiceCosts", + "name": "Recoverable Service Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 33, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096279, + "fieldSelector": "filingFeesAndCosts", + "name": "Filing Fees and Costs", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 34, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096280, + "fieldSelector": "costsWritIssuance", + "name": "Costs: Writ Issuance", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 36, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096281, + "fieldSelector": "costsSheriffsFee", + "name": "Costs: Sheriff's Fee", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 36, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096285, + "fieldSelector": "totalHardCosts", + "name": "Total Hard Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 50, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096286, + "fieldSelector": "totalSoftCosts", + "name": "Total Soft Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 50, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096287, + "fieldSelector": "totalCourtCosts", + "name": "Total Court Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 50, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096288, + "fieldSelector": "totalCostsHeader", + "name": "Total Costs of Case", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 51, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096289, + "fieldSelector": "totalCosts", + "name": "Total Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 52, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096290, + "fieldSelector": "totalFeesAndCostsOfCase", + "name": "==== Total Fees and Costs of Case ====", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 53, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096291, + "fieldSelector": "totalFeesAndCosts", + "name": "Total Fees and Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 54, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096292, + "fieldSelector": "totalFeesAndCostsOfCase_1", + "name": "Total Fees and Costs of Case:", + "dropdownItems": [], + "customFieldType": "CalculatedInteger", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096323, + "fieldSelector": "costsMSJFilingFee", + "name": "Costs: MSJ Filing Fee", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 37, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096324, + "fieldSelector": "costsExParteAppFee1", + "name": "Costs: Ex Parte App Fee - App for Judgment", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 38, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6096325, + "fieldSelector": "costsExParteAppFee2", + "name": "Costs: Ex Parte App Fee - Other", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 38, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6097328, + "fieldSelector": "pIABaseFeePerFA", + "name": "PIA Base Fee Per FA (Note Only, Not Calculated)", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6097338, + "fieldSelector": "pIACosts", + "name": "PIA Costs (Info Only, Not Calculated)", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 35, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6098745, + "fieldSelector": "totalAttorneySFees_2", + "name": "Total Attorney's Fees", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 7, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133773, + "fieldSelector": "totalCosts_1", + "name": "Total Costs", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 29, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133776, + "fieldSelector": "totalRecoverableCosts", + "name": "Total Recoverable Costs", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 52, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168903, + "fieldSelector": "billAttorneyFeesOther1", + "name": "Bill Attorney Fees Other 1", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 19, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168906, + "fieldSelector": "billAttorneyFeesOther2", + "name": "Bill Attorney Fees Other 2", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888016, + "targetCustomFieldID": 6168906, + "behavior": 0, + "parameterCustomFieldID": 6056520, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 20, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168907, + "fieldSelector": "billAttorneyFeesOther3", + "name": "Bill Attorney Fees Other 3", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888017, + "targetCustomFieldID": 6168907, + "behavior": 0, + "parameterCustomFieldID": 6056523, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 21, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168909, + "fieldSelector": "billJuryTrialPrep", + "name": "Bill Jury Trial Prep", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 24, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168911, + "fieldSelector": "billJuryTrialInitialPayment", + "name": "Bill Jury Trial Initial Payment", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 24, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168912, + "fieldSelector": "billForJuryTrialFinalPayment", + "name": "Bill For Jury Trial Final Payment", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888019, + "targetCustomFieldID": 6168912, + "behavior": 0, + "parameterCustomFieldID": 6096267, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 25, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168931, + "fieldSelector": "billForOtherServiceCosts", + "name": "Bill for Other Service Costs", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888029, + "targetCustomFieldID": 6168931, + "behavior": 0, + "parameterCustomFieldID": 6096275, + "whenTestType": 2, + "whenParameter": "" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168954, + "fieldSelector": "billOtherExParteFee", + "name": "Bill Other Ex Parte Fee", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 38, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168955, + "fieldSelector": "billForOtherCost1", + "name": "Bill For Other Cost 1", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 39, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168956, + "fieldSelector": "billForOtherCost2", + "name": "Bill For Other Cost 2", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 40, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168957, + "fieldSelector": "billForOtherCost3", + "name": "Bill For Other Cost 3", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 41, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180113, + "fieldSelector": "typeOfTenancy", + "name": "Type of Tenancy", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180114, + "fieldSelector": "premisesCounty", + "name": "Premises County", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180115, + "fieldSelector": "premisesCity", + "name": "Premises City", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180116, + "fieldSelector": "projectJustCauseCity", + "name": "Project Just Cause City", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180117, + "fieldSelector": "section8Tenancy", + "name": "Section 8 Tenancy", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180118, + "fieldSelector": "projectTaxCreditUnit", + "name": "Project Tax Credit Unit", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 2, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180119, + "fieldSelector": "projectUnitCityBelowMarket", + "name": "Project Unit City Below Market Rental (BMR)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 2, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180120, + "fieldSelector": "formOfLease", + "name": "Form of Lease", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180121, + "fieldSelector": "amountDemandedInNotice", + "name": "Amount Demanded in Notice", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180122, + "fieldSelector": "adjustedOrCurrentRent", + "name": "Adjusted or Current Rent", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180123, + "fieldSelector": "19461And2CaseType", + "name": "1946.1 and .2 Case Type", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 3, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180124, + "fieldSelector": "caseTakeoverAdditionalFee", + "name": "Case Takeover Additional Fee (minimum is $1,000)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/feesAndCosts" + } + }, + { + "sectionSelector": "fileAndServe", + "isCollection": true, + "name": "File and Serve", + "customFields": [ + { + "id": 6172975, + "fieldSelector": "orderType", + "name": "Order Type", + "dropdownItems": [ + "Process Service", + "E-File", + "E-File and Process Service" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172976, + "fieldSelector": "filingType", + "name": "Filing Type", + "dropdownItems": [ + "Initial", + "Subsequent" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890669, + "targetCustomFieldID": 6172976, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "E-File" + } + ], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172977, + "fieldSelector": "clientDocuments", + "name": "Documents:", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172978, + "fieldSelector": "documents", + "name": "Documents", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172979, + "fieldSelector": "documentType", + "name": "Document Type", + "dropdownItems": [ + "Initial complaint", + "Summons", + "Response to petition", + "Affidavit of Service", + "Motion", + "Opposition", + "Subpoena", + "Notice", + "Other" + ], + "customFieldType": "MultiSelectList", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172980, + "fieldSelector": "otherDocumentTypes", + "name": "Other Document Types", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890665, + "targetCustomFieldID": 6172980, + "behavior": 0, + "parameterCustomFieldID": 6172979, + "whenTestType": 3, + "whenParameter": "Other" + } + ], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172981, + "fieldSelector": "processServing", + "name": "Process Serving", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2890666, + "targetCustomFieldID": 6172981, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172982, + "fieldSelector": "defendant", + "name": "Defendant", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2890668, + "targetCustomFieldID": 6172982, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172983, + "fieldSelector": "agentForService", + "name": "Agent for Service", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2890670, + "targetCustomFieldID": 6172983, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172984, + "fieldSelector": "methodOfService", + "name": "Method of Service", + "dropdownItems": [ + "Mail Service - Certified", + "Mail Service - Email", + "Mail Service - Standard", + "Personal Service", + "Personal Service: Sheriff" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890671, + "targetCustomFieldID": 6172984, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172985, + "fieldSelector": "servicePriority", + "name": "Service Priority", + "dropdownItems": [ + "Standard", + "Rush" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890672, + "targetCustomFieldID": 6172985, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": true + }, + { + "id": 6172986, + "fieldSelector": "additionalServiceInstruction", + "name": "Additional Service Instructions", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2890673, + "targetCustomFieldID": 6172986, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172987, + "fieldSelector": "sendToLegalex", + "name": "Send To Legalex", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 10, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172988, + "fieldSelector": "statusUpdate", + "name": "Status Update", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 11, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172989, + "fieldSelector": "acknowledgmentMessage", + "name": "Acknowledgment Message", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172990, + "fieldSelector": "eFlingURL", + "name": "EFling URL", + "dropdownItems": [], + "customFieldType": "Url", + "behaviors": [ + { + "id": 2890674, + "targetCustomFieldID": 6172990, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 1, + "whenParameter": "E-File" + } + ], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172991, + "fieldSelector": "filingStatus", + "name": "Filing Status", + "dropdownItems": [ + "In Progress", + "Accepted", + "Rejected" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890675, + "targetCustomFieldID": 6172991, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "E-file" + } + ], + "row": 13, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172992, + "fieldSelector": "filedDocuments", + "name": "Filed Documents", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [ + { + "id": 2890676, + "targetCustomFieldID": 6172992, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "E-file" + } + ], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172993, + "fieldSelector": "serviceDate", + "name": "Service Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2890677, + "targetCustomFieldID": 6172993, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172994, + "fieldSelector": "serviceStatus", + "name": "Service Status", + "dropdownItems": [ + "In Progress", + "Attempted", + "Served", + "Filed Proof of Service Uploaded", + "Non Service", + "Closed", + "Signed Proof of Service Uploaded" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890678, + "targetCustomFieldID": 6172994, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172995, + "fieldSelector": "legalexServiceStatusNotes", + "name": "Legalex Service Status Notes", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2890679, + "targetCustomFieldID": 6172995, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 14, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172996, + "fieldSelector": "proofOfService", + "name": "Proof of Service", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [ + { + "id": 2890680, + "targetCustomFieldID": 6172996, + "behavior": 0, + "parameterCustomFieldID": 6172975, + "whenTestType": 3, + "whenParameter": "Process Service" + } + ], + "row": 15, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172997, + "fieldSelector": "invoiceNumber", + "name": "Invoice Number", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 16, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172998, + "fieldSelector": "invoiceAmount", + "name": "Invoice Amount", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 16, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172999, + "fieldSelector": "invoice", + "name": "Invoice", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [], + "row": 16, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/fileAndServe" + } + }, + { + "sectionSelector": "intake", + "isCollection": false, + "name": "Intake", + "customFields": [ + { + "id": 6082309, + "fieldSelector": "caseType", + "name": "Case Type", + "dropdownItems": [ + "Residential Nonpayment of Rent (RNP)", + "Commercial Nonpayment of Rent (CNP)", + "Any other rental issue (ATTY)" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082313, + "fieldSelector": "haveWeSetUpThisRentalPro", + "name": "Have we set up this Rental Property in our system?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082314, + "fieldSelector": "nameOfTheRentalProperty", + "name": "Name of the Rental Property as listed in our System", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082315, + "fieldSelector": "leaseOrRentalAgreement", + "name": "Lease or Rental Agreement", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082316, + "fieldSelector": "noticeToPayRentOrQuit", + "name": "Notice to Pay Rent or Quit", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [ + { + "id": 2842879, + "targetCustomFieldID": 6082316, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 4, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082317, + "fieldSelector": "proofOfServiceOfTheNotice", + "name": "Proof of Service of the Notice (if not included in the Notice File)", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [ + { + "id": 2842884, + "targetCustomFieldID": 6082317, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082318, + "fieldSelector": "ledgerItSOkayIfYouDoNo", + "name": "Ledger (it's okay if you do not have one)", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [ + { + "id": 2842885, + "targetCustomFieldID": 6082318, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082322, + "fieldSelector": "pleaseConfirmTheFollowingA", + "name": "Please confirm the following are true of the amount listed in the notice:", + "dropdownItems": [ + "It is rent only (not other charges)", + "It first came due within the last one year", + "No amounts were accepted after notice service" + ], + "customFieldType": "MultiSelectList", + "behaviors": [ + { + "id": 2842992, + "targetCustomFieldID": 6082322, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "RNP" + } + ], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082609, + "fieldSelector": "pleaseConfirmThatYouAreRe", + "name": "Please confirm that you are requesting that we proceed with reviewing this case. If you submit this", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2842991, + "targetCustomFieldID": 6082609, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082610, + "fieldSelector": "pleaseConfirmTheAmountsIn", + "name": "Please confirm the amounts in the notice first came due within the past year.", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2843003, + "targetCustomFieldID": 6082610, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "CNP" + } + ], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082611, + "fieldSelector": "ifYouHaveAcceptedAnyRent", + "name": "If you have accepted any rent since serving the notice, list the amount:", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2842994, + "targetCustomFieldID": 6082611, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "CNP" + } + ], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082612, + "fieldSelector": "primaryTenantsLastName", + "name": "Primary Tenant's Last Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2842995, + "targetCustomFieldID": 6082612, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 10, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082613, + "fieldSelector": "briefDescriptionOfThePrima", + "name": "Brief Description of the Primary Issue:", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2842996, + "targetCustomFieldID": 6082613, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 11, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082614, + "fieldSelector": "detailedDescriptionOfTheIs", + "name": "Detailed Description of the Issues and Notes for the Attorney", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2843005, + "targetCustomFieldID": 6082614, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082615, + "fieldSelector": "iSYourGoalToTerminate", + "name": "IS your goal to terminate or evict the tenants at this time, or would you prefer a final warning/ no", + "dropdownItems": [ + "Terminate / Evict", + "Final Warning / Notice to Cease" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 13, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082616, + "fieldSelector": "isThisATenancyOfLessThan", + "name": "Is this a tenancy of less than 1 year?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2842998, + "targetCustomFieldID": 6082616, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082617, + "fieldSelector": "doesTheTenantHaveASection", + "name": "Does the Tenant have a Section 8 Housing Choice Voucher?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082618, + "fieldSelector": "isTheTenantCurrentlyInAL", + "name": "Is the tenant currently in a lease term?", + "dropdownItems": [ + "Term Lease", + "Currently month to month" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2842999, + "targetCustomFieldID": 6082618, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 16, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082619, + "fieldSelector": "whatIsTheCurrentMonthlyRe", + "name": "What is the current monthly Rent?", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [ + { + "id": 2843000, + "targetCustomFieldID": 6082619, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 17, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082620, + "fieldSelector": "anyPreviousNoticesToPerfor", + "name": "Any previous notices to perform, quit, or notices of violation that were served:", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [ + { + "id": 2843001, + "targetCustomFieldID": 6082620, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 18, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082621, + "fieldSelector": "allRelevantWitnessStatement", + "name": "All relevant witness statements and incident reports", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [ + { + "id": 2843002, + "targetCustomFieldID": 6082621, + "behavior": 0, + "parameterCustomFieldID": 6082309, + "whenTestType": 3, + "whenParameter": "Atty" + } + ], + "row": 19, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/intake" + } + }, + { + "sectionSelector": "leaseInfoNP", + "isCollection": false, + "name": "Lease & Rental Info", + "customFields": [ + { + "id": 6046885, + "fieldSelector": "leaseDate", + "name": "Lease Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046887, + "fieldSelector": "leaseDoc", + "name": "Lease Doc", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [ + { + "id": 2889334, + "targetCustomFieldID": 6046887, + "behavior": 0, + "parameterCustomFieldID": 6071864, + "whenTestType": 4, + "whenParameter": "><" + } + ], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046889, + "fieldSelector": "tenantsInitialMoveInDate", + "name": "Tenants initial move in date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2836806, + "targetCustomFieldID": 6046889, + "behavior": 1, + "parameterCustomFieldID": 6071890, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 6, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046893, + "fieldSelector": "leaseTermExpiration", + "name": "Lease Term Expiration", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2836771, + "targetCustomFieldID": 6046893, + "behavior": 0, + "parameterCustomFieldID": 6071869, + "whenTestType": 1, + "whenParameter": "fixed term" + } + ], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046894, + "fieldSelector": "leaseTransferDate", + "name": "Lease Transfer Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2836772, + "targetCustomFieldID": 6046894, + "behavior": 0, + "parameterCustomFieldID": 6071864, + "whenTestType": 3, + "whenParameter": "Unit transfer" + } + ], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046895, + "fieldSelector": "leaseTransferInitialAddre", + "name": "Lease Transfer - Initial Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2836773, + "targetCustomFieldID": 6046895, + "behavior": 0, + "parameterCustomFieldID": 6071864, + "whenTestType": 3, + "whenParameter": "Unit transfer" + } + ], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046896, + "fieldSelector": "attorneyFeeInLease", + "name": "Attorney Fee in Lease?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2842864, + "targetCustomFieldID": 6046896, + "behavior": 0, + "parameterCustomFieldID": 6071864, + "whenTestType": 4, + "whenParameter": "><" + } + ], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6046898, + "fieldSelector": "attorneyFeeNotToExceed", + "name": "Attorney Fee Not to Exceed (Fee/ Costs Limit)", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2869500, + "targetCustomFieldID": 6046898, + "behavior": 0, + "parameterCustomFieldID": 6071871, + "whenTestType": 3, + "whenParameter": "cost" + } + ], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071864, + "fieldSelector": "formOfLease", + "name": "Form of Lease", + "dropdownItems": [ + "Written and signed lease or rental agreement", + "Oral agreement ><", + "Signed Lease that has been lost ><", + "Lost lease - identical unsigned lease attached", + "Lease signed with predecessor - and you have it", + "Lease signed with predecessor - you have estoppel", + "Lease signed with predecessor >< you don't have it", + "Written lease, but there are missing pages", + "Lease signed for another Unit, Unit transfer", + "Employee housing license" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071865, + "fieldSelector": "leaseFormAndTerms", + "name": "Lease Form and Terms", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071866, + "fieldSelector": "section8Tenancy", + "name": "Section 8 Tenancy", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071867, + "fieldSelector": "section8TenantSPortionOfRent", + "name": "Section 8 - Tenant's Portion of Rent", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2836762, + "targetCustomFieldID": 6071867, + "behavior": 0, + "parameterCustomFieldID": 6071866, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071869, + "fieldSelector": "initialLeaseTerm", + "name": "Current Lease Term", + "dropdownItems": [ + "fixed term", + "month to month" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2836805, + "targetCustomFieldID": 6071869, + "behavior": 1, + "parameterCustomFieldID": 6071890, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071870, + "fieldSelector": "attorneyFeeSection", + "name": "Attorney Fee Section", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2836767, + "targetCustomFieldID": 6071870, + "behavior": 0, + "parameterCustomFieldID": 6046896, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071871, + "fieldSelector": "feeLimitIncludesCosts", + "name": "Fee Limit Includes Costs", + "dropdownItems": [ + "No Limit", + "Limit of Fees, Costs unlimited", + "Limit of Combined Fees and Costs" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2836774, + "targetCustomFieldID": 6071871, + "behavior": 0, + "parameterCustomFieldID": 6046896, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 9, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071872, + "fieldSelector": "rentInfo", + "name": "Rent Info", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 11, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071873, + "fieldSelector": "initialRent", + "name": "Initial Rent", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2845083, + "targetCustomFieldID": 6071873, + "behavior": 0, + "parameterCustomFieldID": 6086835, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 13, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071874, + "fieldSelector": "adjustedOrCurrentRent", + "name": "Adjusted or Current Rent", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071875, + "fieldSelector": "monthlyRentDueDate", + "name": "Monthly Rent Due Date", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837107, + "targetCustomFieldID": 6071875, + "behavior": 0, + "parameterCustomFieldID": 6071890, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071876, + "fieldSelector": "dailyRentDamages", + "name": "Daily Rent Damages", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071890, + "fieldSelector": "noticeType_1", + "name": "Notice Type", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072332, + "fieldSelector": "rentAccrualPeriods", + "name": "Rent Accrual Periods", + "dropdownItems": [ + "Monthly", + "Weekly", + "Daily" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2842817, + "targetCustomFieldID": 6072332, + "behavior": 0, + "parameterCustomFieldID": 6082205, + "whenTestType": 3, + "whenParameter": "No" + } + ], + "row": 12, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073249, + "fieldSelector": "dailyRentDamagesBegin_1", + "name": "Daily Rent Damages Begin", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 14, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073721, + "fieldSelector": "leaseDocAttached", + "name": "Lease Doc Attached", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2838252, + "targetCustomFieldID": 6073721, + "behavior": 0, + "parameterCustomFieldID": 6071864, + "whenTestType": 4, + "whenParameter": "><" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082205, + "fieldSelector": "isRentDueMonthly", + "name": "Is Rent Due Monthly?", + "dropdownItems": [ + "Yes", + "No (hotel or airbnb)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2842812, + "targetCustomFieldID": 6082205, + "behavior": 0, + "parameterCustomFieldID": 6071890, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082286, + "fieldSelector": "typeOfTenancy", + "name": "Type of Tenancy", + "dropdownItems": [ + "Residential", + "Commercial", + "Mobilehome" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086835, + "fieldSelector": "rentHasBeenAdjusted", + "name": "Rent has been adjusted", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2845082, + "targetCustomFieldID": 6086835, + "behavior": 0, + "parameterCustomFieldID": 6071890, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 13, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6103090, + "fieldSelector": "attorneyFeesTotal", + "name": "Total Attorney's Fees", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2869496, + "targetCustomFieldID": 6103090, + "behavior": 0, + "parameterCustomFieldID": 6071871, + "whenTestType": 3, + "whenParameter": "Limit of" + } + ], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6103091, + "fieldSelector": "ActualFeesExceedFeeLimit", + "name": "Are the Actual Fees >= the Fee Limit", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2869497, + "targetCustomFieldID": 6103091, + "behavior": 0, + "parameterCustomFieldID": 6071871, + "whenTestType": 3, + "whenParameter": "Limit of" + } + ], + "row": 10, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/leaseInfoNP" + } + }, + { + "sectionSelector": "matterOverview", + "isCollection": false, + "name": "Matter Random Info", + "customFields": [ + { + "id": 6072882, + "fieldSelector": "quickDescription", + "name": "Project Name part 2", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 4, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072883, + "fieldSelector": "defendantsCaption", + "name": "Defendants Caption", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072884, + "fieldSelector": "defendantNameForCaseTitle", + "name": "Defendant Name for Short Case Title", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072892, + "fieldSelector": "multipleDefendants", + "name": "Multiple Defendants?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073864, + "fieldSelector": "fileVine8DigitIDInURL", + "name": "FileVine 8 digit ID in URL", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6074002, + "fieldSelector": "matterNumber", + "name": "Matter Number", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6074003, + "fieldSelector": "shortCaseTitle", + "name": "Short Case Title", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081969, + "fieldSelector": "defendantS", + "name": "Defendant/s", + "dropdownItems": [ + "Defendant(s)", + "Defendant", + "Defendants" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081970, + "fieldSelector": "defendantPossessive", + "name": "Defendant's'", + "dropdownItems": [ + "Defendant('s)", + "Defendant's", + "Defendants'" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081971, + "fieldSelector": "defendantIsAre", + "name": "DefendantIsAre", + "dropdownItems": [ + "Defendant(s) are", + "Defendant is", + "Defendants are" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081972, + "fieldSelector": "defendantWasWere", + "name": "Defendant was were", + "dropdownItems": [ + "Defendant(s) were", + "Defendant was", + "Defendants were" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086832, + "fieldSelector": "defendantSRemainS", + "name": "DefendantSRemainS", + "dropdownItems": [ + "Defendant(s) remain", + "Defendant remains", + "Defendants remain" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086833, + "fieldSelector": "hasHave", + "name": "(Def) has have", + "dropdownItems": [ + "Has", + "Have" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6134522, + "fieldSelector": "DefendantObejctSingularorPlural", + "name": "Def's Object s or _", + "dropdownItems": [ + "s", + "\"\"" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 9, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6134524, + "fieldSelector": "DefendantYorIES", + "name": "y or ies", + "dropdownItems": [ + "y", + "ies" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 9, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168963, + "fieldSelector": "signingAttorney", + "name": "Signing Attorney", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170183, + "fieldSelector": "defendantsDoDoes", + "name": "DefendantsDoDoes", + "dropdownItems": [ + "Does", + "Do" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170895, + "fieldSelector": "updateMatterOverviewInfo", + "name": "Update Matter Overview Info", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6173018, + "fieldSelector": "documentShareFolderURL", + "name": "Document Share Folder URL", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/matterOverview" + } + }, + { + "sectionSelector": "newFileReview", + "isCollection": false, + "name": "Notice Info", + "customFields": [ + { + "id": 6031776, + "fieldSelector": "newFileBriefDescription", + "name": "New File Brief Description", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837087, + "targetCustomFieldID": 6031776, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031777, + "fieldSelector": "newFileDetailedDescription", + "name": "New File Client's Detailed Description", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2893777, + "targetCustomFieldID": 6031777, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031778, + "fieldSelector": "noticeType", + "name": "Notice Type", + "dropdownItems": [ + "Notice to Pay or Quit (NP)", + "Notice to Cease/ Correct (NTC)", + "Notice to Quit (NTQ)", + "Notice to Perform (NTP)", + "Notice of Termination of Tenancy (NTT) <>", + "Mutual Termination or Tenant's Notice (MMO) <>", + "Notice to Vacate - Forcible Detainer (FD)" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031779, + "fieldSelector": "newFileNoticeToPrepNotes", + "name": "Notice to Prep - Description of Notice Template", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837091, + "targetCustomFieldID": 6031779, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031781, + "fieldSelector": "attorneyNewFileReviewNotes", + "name": "Attorney New File Review Notes", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031783, + "fieldSelector": "noticePrepNotesForReviewer", + "name": "Preparer's Notice Prep Notes for Reviewer", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2893779, + "targetCustomFieldID": 6031783, + "behavior": 0, + "parameterCustomFieldID": 6178375, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 6, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031787, + "fieldSelector": "noticeServiceDate", + "name": "Notice Service Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031788, + "fieldSelector": "noticeExpirationDate", + "name": "Notice Expiration Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2890365, + "targetCustomFieldID": 6031788, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031789, + "fieldSelector": "tenantCompliedWithNTCNTP", + "name": "Tenant Complied with NTC / NTP", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2889323, + "targetCustomFieldID": 6031789, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 19, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031790, + "fieldSelector": "tenantVacatedPerNotice", + "name": "Tenant Vacated per Notice", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 19, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031791, + "fieldSelector": "nTCNTPViolationAfterNotic", + "name": "NTC/ NTP Violation after Notice", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2845224, + "targetCustomFieldID": 6031791, + "behavior": 0, + "parameterCustomFieldID": 6031789, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 21, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6031799, + "fieldSelector": "subpoenaNonStaffWitnesses", + "name": "Subpoena non-staff witnesses?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072289, + "fieldSelector": "actionUnder11612", + "name": "Action Under: 1161(2)", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837095, + "targetCustomFieldID": 6072289, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 25, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072290, + "fieldSelector": "actionUnder11611", + "name": "Action Under: 1161(1)", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837096, + "targetCustomFieldID": 6072290, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTT" + } + ], + "row": 26, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072291, + "fieldSelector": "actionUnder11613Curable", + "name": "Action Under: 1161(3) Curable", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837100, + "targetCustomFieldID": 6072291, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 28, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072292, + "fieldSelector": "actionUnder11613Incurabl", + "name": "Action Under: 1161(3) Incurable", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837101, + "targetCustomFieldID": 6072292, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 28, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072293, + "fieldSelector": "actionUnder11614Subletti", + "name": "Action Under: 1161(4) Subletting", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837102, + "targetCustomFieldID": 6072293, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 29, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072294, + "fieldSelector": "actionUnder11614Nuisance", + "name": "Action Under: 1161(4) Nuisance", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837103, + "targetCustomFieldID": 6072294, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 29, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072295, + "fieldSelector": "actionUnder11615", + "name": "Action Under: 1161(5)", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2845198, + "targetCustomFieldID": 6072295, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "MMO" + } + ], + "row": 26, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072296, + "fieldSelector": "actionUnder11614Crime", + "name": "Action Under: 1161(4) Crime", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837104, + "targetCustomFieldID": 6072296, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 29, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072297, + "fieldSelector": "actionUnder1161A", + "name": "Action Under: 1161A", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837105, + "targetCustomFieldID": 6072297, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTQ" + } + ], + "row": 30, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072299, + "fieldSelector": "116115CaseType", + "name": "1161(1)/(5) Case Type", + "dropdownItems": [ + "Notice of Termination of MTM ()", + "Expiration of Lease ()", + "Former Employee", + "Termination of At Will Tenant", + "Mutual Termination", + "Tenant's Notice" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2845199, + "targetCustomFieldID": 6072299, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "<>" + } + ], + "row": 26, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072300, + "fieldSelector": "194612CaseType", + "name": "1946.1 and .2 Case Type", + "dropdownItems": [ + "No Cause (Exempt)", + "Owner Move In", + "Withdrawal", + "Government Order to Vacate", + "Substantial Remodel", + "Demolition", + "Unpermitted Unit" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890596, + "targetCustomFieldID": 6072300, + "behavior": 0, + "parameterCustomFieldID": 6072299, + "whenTestType": 3, + "whenParameter": "()" + } + ], + "row": 27, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072301, + "fieldSelector": "1161ACaseType", + "name": "1161A Case Type", + "dropdownItems": [ + "Post Foreclosure", + "Post Sale" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2837106, + "targetCustomFieldID": 6072301, + "behavior": 0, + "parameterCustomFieldID": 6072297, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 30, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072307, + "fieldSelector": "showMMOTerms", + "name": "Show MMO Terms", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 34, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072308, + "fieldSelector": "MMOVacateDate", + "name": "MMO Vacate Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837081, + "targetCustomFieldID": 6072308, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072309, + "fieldSelector": "MMOPaymentsIncluded", + "name": "MMO Rent Payments Included?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837082, + "targetCustomFieldID": 6072309, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072310, + "fieldSelector": "MMOPaymentAmount1", + "name": "MMO Payment Amount 1", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837084, + "targetCustomFieldID": 6072310, + "behavior": 0, + "parameterCustomFieldID": 6072309, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 36, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072311, + "fieldSelector": "MMOPaymentDate1", + "name": "MMO Payment Date 1", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837085, + "targetCustomFieldID": 6072311, + "behavior": 0, + "parameterCustomFieldID": 6072309, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 36, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072314, + "fieldSelector": "MMORelocationPayments", + "name": "MMO Relocation Payments Included?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837083, + "targetCustomFieldID": 6072314, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 35, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072315, + "fieldSelector": "MMOWaiverOfClaims", + "name": "MMO Waiver of Claims?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2837086, + "targetCustomFieldID": 6072315, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 37, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072316, + "fieldSelector": "noticeIsRentOnly", + "name": "Notice is Rent Only?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2838336, + "targetCustomFieldID": 6072316, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072327, + "fieldSelector": "noticeNotes", + "name": "Notice Notes", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 0, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072328, + "fieldSelector": "noticeDays", + "name": "Notice Days", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2838366, + "targetCustomFieldID": 6072328, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072329, + "fieldSelector": "noticeResult", + "name": "Notice Result", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 18, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072330, + "fieldSelector": "noticeDateSpecifiedToVacate", + "name": "Notice Date Specified to Vacate", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837092, + "targetCustomFieldID": 6072330, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 8, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072331, + "fieldSelector": "mutualTerminationAgreementT", + "name": "Mutual Termination Agreement Terms", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 34, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072568, + "fieldSelector": "secondCauseOfAction", + "name": "Second Cause of Action", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 31, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072569, + "fieldSelector": "includeSecondCauseOfAction", + "name": "Include Second Cause of Action?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 32, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072570, + "fieldSelector": "secondCauseOfActionType", + "name": "Second Cause of Action Type", + "dropdownItems": [ + "Notice to Perform or Quit (NTP)", + "Notice of Termination of Tenancy (NTT)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2837322, + "targetCustomFieldID": 6072570, + "behavior": 0, + "parameterCustomFieldID": 6072569, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072574, + "fieldSelector": "secondCauseNoticeServiceDate", + "name": "Second Cause Notice Service Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837325, + "targetCustomFieldID": 6072574, + "behavior": 0, + "parameterCustomFieldID": 6072570, + "whenTestType": 3, + "whenParameter": "(NT" + } + ], + "row": 33, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073247, + "fieldSelector": "amountDemandedInNotice", + "name": "Amount Demanded in Notice", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837925, + "targetCustomFieldID": 6073247, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073248, + "fieldSelector": "dailyRentDamagesBegin", + "name": "Daily Rent Damages Begin", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 9, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073795, + "fieldSelector": "CommRentAcceptedAfterNotice", + "name": "Commercial Rent Accepted After Notice Service", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2888918, + "targetCustomFieldID": 6073795, + "behavior": 0, + "parameterCustomFieldID": 6170061, + "whenTestType": 3, + "whenParameter": "Comm" + } + ], + "row": 11, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073820, + "fieldSelector": "noticeDaysAndAmounts", + "name": "Notice Days and Amounts", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2838364, + "targetCustomFieldID": 6073820, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086818, + "fieldSelector": "secondCauseNoticeDaysPerform", + "name": "Second Cause Notice Days to Perform", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [ + { + "id": 2845078, + "targetCustomFieldID": 6086818, + "behavior": 0, + "parameterCustomFieldID": 6072569, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 33, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086819, + "fieldSelector": "secondCauseNoticeDaysVacate", + "name": "Second Cause Notice Days to Vacate", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [ + { + "id": 2845079, + "targetCustomFieldID": 6086819, + "behavior": 0, + "parameterCustomFieldID": 6072569, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 33, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086822, + "fieldSelector": "secondCauseNoticeExhibitNum", + "name": "Second Cause Notice Exhibit Number", + "dropdownItems": [ + "Exhibit B", + "Exhibit C" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2845086, + "targetCustomFieldID": 6086822, + "behavior": 0, + "parameterCustomFieldID": 6072569, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 33, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086953, + "fieldSelector": "noticeDaysToPayOrPerform", + "name": "Notice Days to Pay or Perform", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [], + "row": 8, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6086954, + "fieldSelector": "noticeDaysToVacate", + "name": "Notice Days to Vacate", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6087159, + "fieldSelector": "employmentTerminationDate", + "name": "Employment Termination Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2845201, + "targetCustomFieldID": 6087159, + "behavior": 0, + "parameterCustomFieldID": 6072299, + "whenTestType": 3, + "whenParameter": "Employ" + } + ], + "row": 27, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6087160, + "fieldSelector": "causeOfAction", + "name": "Cause of Action", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 24, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6087214, + "fieldSelector": "mMOSignedOn", + "name": "MMO Signed On", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2845212, + "targetCustomFieldID": 6087214, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 38, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6087219, + "fieldSelector": "noticeToCorrectServedPrior", + "name": "Notice to Correct Served prior to NTQ on Date:", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2845225, + "targetCustomFieldID": 6087219, + "behavior": 0, + "parameterCustomFieldID": 6031789, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 20, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6087241, + "fieldSelector": "commercialRentStillOwing", + "name": "Commercial Rent Still Owing", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [ + { + "id": 2888920, + "targetCustomFieldID": 6087241, + "behavior": 0, + "parameterCustomFieldID": 6170061, + "whenTestType": 3, + "whenParameter": "Comm" + } + ], + "row": 11, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6093239, + "fieldSelector": "ourServerToServeTheNotice", + "name": "Our Server to Serve the Notice?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6093241, + "fieldSelector": "attorneyNoticeServiceTaskList", + "name": "Attorney Notice Service Task List", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2849219, + "targetCustomFieldID": 6093241, + "behavior": 0, + "parameterCustomFieldID": 6093239, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 13, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168510, + "fieldSelector": "sendNTCToClientToServe", + "name": "Send NTC to CLIENT TO SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893793, + "targetCustomFieldID": 6168510, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTC" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168511, + "fieldSelector": "sendNTCToClientToReview", + "name": "Send NTC to Client to Review and WE WILL SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893792, + "targetCustomFieldID": 6168511, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTC" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168512, + "fieldSelector": "noticeSubmissionAndService", + "name": "Notice Submission and Service", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168760, + "fieldSelector": "billNTC", + "name": "Bill NTC", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887965, + "targetCustomFieldID": 6168760, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTC" + } + ], + "row": 41, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168762, + "fieldSelector": "attorneyFeesNTC_1", + "name": "Attorney Fees: NTC", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887968, + "targetCustomFieldID": 6168762, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTC" + } + ], + "row": 41, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168768, + "fieldSelector": "billResidentialNonmonetary", + "name": "Bill Residential Nonmonetary", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887969, + "targetCustomFieldID": 6168768, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 43, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168771, + "fieldSelector": "billCommercialNonmonetary", + "name": "Bill Commercial Nonmonetary", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887971, + "targetCustomFieldID": 6168771, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 43, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168773, + "fieldSelector": "uDBaseFeeResidentialNonmo", + "name": "UD Base Fee: Residential Nonmonetary", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887979, + "targetCustomFieldID": 6168773, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 43, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168776, + "fieldSelector": "uDBaseFeeCommercialNonmon", + "name": "UD Base Fee: Commercial Nonmonetary", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887980, + "targetCustomFieldID": 6168776, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 43, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168826, + "fieldSelector": "billForMMOLetterContract", + "name": "Bill for MMO, Letter, Contract", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2889326, + "targetCustomFieldID": 6168826, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 41, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168850, + "fieldSelector": "attorneyFeesLetterMMOCo", + "name": "Attorney Fees: Letter, MMO, Contract", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2889327, + "targetCustomFieldID": 6168850, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 41, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168854, + "fieldSelector": "bILLING", + "name": "BILLING", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 39, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168862, + "fieldSelector": "billForNoticePrepOnly", + "name": "Bill For Notice Prep Only", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887973, + "targetCustomFieldID": 6168862, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 45, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168863, + "fieldSelector": "attorneyFeesNoticeOnly", + "name": "Attorney Fees: Notice Only", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887981, + "targetCustomFieldID": 6168863, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 45, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168864, + "fieldSelector": "billForNPReviewAndPrepOnly", + "name": "Bill For NP Review and Prep Only", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887986, + "targetCustomFieldID": 6168864, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 46, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168866, + "fieldSelector": "attorneyFeesNonpaymentRevi", + "name": "Attorney Fees: Nonpayment Review & Prep Only", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887987, + "targetCustomFieldID": 6168866, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NP" + } + ], + "row": 46, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168868, + "fieldSelector": "billForTenantBuyOutAgreementOnly", + "name": "Bill for Tenant Buy Out (Agreement Only)", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2887984, + "targetCustomFieldID": 6168868, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 45, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168869, + "fieldSelector": "attorneyFeesTenantBuyOut", + "name": "Attorney Fees: Tenant Buy Out (agreement only)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2887985, + "targetCustomFieldID": 6168869, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 45, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168932, + "fieldSelector": "billForServiceOfNotice", + "name": "Bill For Service of Notice", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888030, + "targetCustomFieldID": 6168932, + "behavior": 0, + "parameterCustomFieldID": 6093239, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 42, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168933, + "fieldSelector": "costsServiceOfNotice", + "name": "Costs: Service of Notice", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2888031, + "targetCustomFieldID": 6168933, + "behavior": 0, + "parameterCustomFieldID": 6093239, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 42, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169480, + "fieldSelector": "isThisACaseTakeover", + "name": "Is this a Case Takeover?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 40, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6169482, + "fieldSelector": "caseTakeoverAdditionalFee", + "name": "Case Takeover Additional Fee (minimum is $1,000)", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2888537, + "targetCustomFieldID": 6169482, + "behavior": 0, + "parameterCustomFieldID": 6169480, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 40, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170061, + "fieldSelector": "typeOfTenancy", + "name": "Type of Tenancy", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170102, + "fieldSelector": "emailProcessServerRequestingPhotoOfPosting", + "name": "Email Process Server Requesting Photo of Posting", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2891091, + "targetCustomFieldID": 6170102, + "behavior": 0, + "parameterCustomFieldID": 6093239, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172482, + "fieldSelector": "operativeNotice", + "name": "Operative Notice", + "dropdownItems": [], + "customFieldType": "Doc", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178375, + "fieldSelector": "areThereNotesForTheReview", + "name": "Are there Notes for the Reviewing Attorney?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2893778, + "targetCustomFieldID": 6178375, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 4, + "whenParameter": "NP" + } + ], + "row": 4, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178376, + "fieldSelector": "noticePrepperNotes", + "name": "Notice Prepper Notes", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893780, + "targetCustomFieldID": 6178376, + "behavior": 0, + "parameterCustomFieldID": 6178375, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178377, + "fieldSelector": "sendNTPToCLIENTTOSERVE", + "name": "Send NTP to CLIENT TO SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893788, + "targetCustomFieldID": 6178377, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTP" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178378, + "fieldSelector": "sendNTPToClientToReview", + "name": "Send NTP to Client to Review and WE WILL SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893786, + "targetCustomFieldID": 6178378, + "behavior": 0, + "parameterCustomFieldID": 6170061, + "whenTestType": 3, + "whenParameter": "NTP" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178379, + "fieldSelector": "sendNTQToCLIENTTOSERVE", + "name": "Send NTQ to CLIENT TO SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893805, + "targetCustomFieldID": 6178379, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTQ" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178380, + "fieldSelector": "sendNTQToClientToReview", + "name": "Send NTQ to Client to Review and WE WILL SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893790, + "targetCustomFieldID": 6178380, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTQ" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178381, + "fieldSelector": "sendNTVToCLIENTTOSERVE", + "name": "Send NTV to CLIENT TO SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893794, + "targetCustomFieldID": 6178381, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "FD" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178382, + "fieldSelector": "sendNTVToClientToReview", + "name": "Send NTV to Client to Review and WE WILL SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893796, + "targetCustomFieldID": 6178382, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "FD" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178383, + "fieldSelector": "sendNTTToCLIENTTOSERVE", + "name": "Send NTT to CLIENT TO SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893797, + "targetCustomFieldID": 6178383, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTT" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178384, + "fieldSelector": "sendNTTToClientToReview", + "name": "Send NTT to Client to Review and WE WILL SERVE", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893798, + "targetCustomFieldID": 6178384, + "behavior": 0, + "parameterCustomFieldID": 6031778, + "whenTestType": 3, + "whenParameter": "NTT" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178385, + "fieldSelector": "sendMMOToCLIENTTOSIGN", + "name": "Send MMO to CLIENT TO SIGN", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893799, + "targetCustomFieldID": 6178385, + "behavior": 0, + "parameterCustomFieldID": 6072307, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 37, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/newFileReview" + } + }, + { + "sectionSelector": "parties", + "isCollection": true, + "name": "Do Not Use", + "customFields": [], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/parties" + } + }, + { + "sectionSelector": "pleadings", + "isCollection": true, + "name": "Pleadings", + "customFields": [ + { + "id": 5998174, + "fieldSelector": "pleadingtype", + "name": "Pleading Type", + "dropdownItems": [ + "Answer", + "Complaint", + "Motion", + "Notice", + "Objection", + "Order", + "Response", + "Stipulation" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998175, + "fieldSelector": "hearingdate", + "name": "Hearing Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2792304, + "targetCustomFieldID": 5998175, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 11, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998176, + "fieldSelector": "notes", + "name": "Hearing Notes", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998177, + "fieldSelector": "pleadingname", + "name": "Pleading Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998178, + "fieldSelector": "pleading", + "name": "pleading", + "dropdownItems": [], + "customFieldType": "Instructions", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998179, + "fieldSelector": "dateServed", + "name": "Date Served", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998180, + "fieldSelector": "dateFiled", + "name": "Date Filed", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 5, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998181, + "fieldSelector": "replyDate", + "name": "Reply Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2792305, + "targetCustomFieldID": 5998181, + "behavior": 0, + "parameterCustomFieldID": 5998186, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 8, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998182, + "fieldSelector": "hearing", + "name": "Hearing?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 10, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998183, + "fieldSelector": "responseDue", + "name": "Response Due", + "dropdownItems": [], + "customFieldType": "Deadline", + "behaviors": [], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998184, + "fieldSelector": "response", + "name": "Response?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 7, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998185, + "fieldSelector": "whoOriginatedPleading", + "name": "Who Originated Pleading?", + "dropdownItems": [ + "Plaintiff", + "Defendant" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998186, + "fieldSelector": "reply", + "name": "Reply?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998187, + "fieldSelector": "responseDate", + "name": "Response Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2792306, + "targetCustomFieldID": 5998187, + "behavior": 0, + "parameterCustomFieldID": 5998184, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 7, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998188, + "fieldSelector": "plaintiff", + "name": "Plaintiff", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998189, + "fieldSelector": "defendant", + "name": "Defendant", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998190, + "fieldSelector": "defendantAttorney", + "name": "Defendant Attorney", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998191, + "fieldSelector": "pleadingInformation", + "name": "Pleading Information", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 0, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998192, + "fieldSelector": "tracking", + "name": "Tracking", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 4, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998193, + "fieldSelector": "hearingInformation", + "name": "Hearing Information", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2792307, + "targetCustomFieldID": 5998193, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998194, + "fieldSelector": "hearingTime", + "name": "Hearing Time", + "dropdownItems": [ + "7:00", + "7:15", + "7:30", + "7:45", + "8:00", + "8:15", + "8:30", + "8:45", + "9:00", + "9:15", + "9:30", + "9:45", + "10:00", + "10:15", + "10:30", + "10:45", + "11:00", + "11:15", + "11:30", + "11:45", + "12:00", + "12:15", + "12:30", + "12:45", + "1:00", + "1:15", + "1:30", + "1:45", + "2:00", + "2:15", + "2:30", + "2:45", + "3:00", + "3:15", + "4:00", + "4:15", + "4:30", + "4:45", + "5:00", + "5:15", + "5:30", + "5:45", + "6:00", + "6:15", + "6:30", + "6:45" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2792308, + "targetCustomFieldID": 5998194, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998195, + "fieldSelector": "aMPM", + "name": "AM/PM", + "dropdownItems": [ + "AM", + "PM" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2792309, + "targetCustomFieldID": 5998195, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 11, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998196, + "fieldSelector": "hearingLocation", + "name": "Hearing Location", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2792310, + "targetCustomFieldID": 5998196, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 11, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998197, + "fieldSelector": "hearingInstructions", + "name": "Hearing Instructions", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2792311, + "targetCustomFieldID": 5998197, + "behavior": 0, + "parameterCustomFieldID": 5998182, + "whenTestType": 1, + "whenParameter": "yes" + } + ], + "row": 12, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998198, + "fieldSelector": "documentManagement", + "name": "Document Management", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998199, + "fieldSelector": "generatePleading", + "name": "Generate Pleading", + "dropdownItems": [], + "customFieldType": "MultiDocGen", + "behaviors": [], + "row": 15, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998200, + "fieldSelector": "uploadDocument", + "name": "Upload Document", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/pleadings" + } + }, + { + "sectionSelector": "projectOverview", + "isCollection": false, + "name": "Project Overview", + "customFields": [ + { + "id": 5997901, + "fieldSelector": "internalTeamAssignmentsInst", + "name": "Internal Team Assignments Instructions", + "dropdownItems": [], + "customFieldType": "Instructions", + "behaviors": [], + "row": 21, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997902, + "fieldSelector": "involvedTeamMembersOtherS", + "name": "Involved Team Members (Other Stakeholders)", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [], + "row": 22, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997903, + "fieldSelector": "platformProjectTypeIfOthe", + "name": "Platform Project Type (If Other)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2792194, + "targetCustomFieldID": 5997903, + "behavior": 0, + "parameterCustomFieldID": 5997907, + "whenTestType": 3, + "whenParameter": "Other" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997904, + "fieldSelector": "projectClosedDate", + "name": "Project | Matter Closed Date (Archive)", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997905, + "fieldSelector": "projectOpenedDate", + "name": "Project | Matter Opened Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997906, + "fieldSelector": "projectResolvedDate", + "name": "Project | Matter Resolved Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997907, + "fieldSelector": "projectType", + "name": "Project | Matter Type", + "dropdownItems": [ + "Apartment Complex", + "Commercial", + "Notice of termination prep", + "Property County", + "Section 8" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997908, + "fieldSelector": "projectSummary", + "name": "Project Summary", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 26, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997909, + "fieldSelector": "projectTypeLinePlaceholder", + "name": "Project Type Line Placeholder", + "dropdownItems": [], + "customFieldType": "Instructions", + "behaviors": [], + "row": 20, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997910, + "fieldSelector": "projectTypeHeader", + "name": "ProjectTypeHeader", + "dropdownItems": [], + "customFieldType": "Instructions", + "behaviors": [], + "row": 11, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997911, + "fieldSelector": "teamLead", + "name": "Team Lead", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 22, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5997912, + "fieldSelector": "teamSecondary", + "name": "Team Secondary", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 22, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998335, + "fieldSelector": "propertyDetails", + "name": "Property Details", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 27, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998336, + "fieldSelector": "propertyName", + "name": "Property Name", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 28, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998337, + "fieldSelector": "propertyOwner", + "name": "Property Owner", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 28, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998338, + "fieldSelector": "Tenant", + "name": "Tenant", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 28, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998343, + "fieldSelector": "nonpaymentOfRent", + "name": "Nonpayment of Rent?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 29, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998344, + "fieldSelector": "howMuchWasTheirRent", + "name": "How much was their rent?", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2792427, + "targetCustomFieldID": 5998344, + "behavior": 0, + "parameterCustomFieldID": 5998343, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 29, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998345, + "fieldSelector": "rentOverdue", + "name": "Rent overdue", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2792426, + "targetCustomFieldID": 5998345, + "behavior": 0, + "parameterCustomFieldID": 5998343, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 29, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998346, + "fieldSelector": "noCauseTerminationsOfTenan", + "name": "No cause terminations of tenancies?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 30, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998347, + "fieldSelector": "documentationForNoCauseTer", + "name": "Documentation for No Cause Termination of Tenancies", + "dropdownItems": [], + "customFieldType": "DocList", + "behaviors": [ + { + "id": 2792428, + "targetCustomFieldID": 5998347, + "behavior": 0, + "parameterCustomFieldID": 5998346, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 30, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 5998348, + "fieldSelector": "302", + "name": "30,2", + "dropdownItems": [], + "customFieldType": "Instructions", + "behaviors": [], + "row": 30, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/projectOverview" + } + }, + { + "sectionSelector": "propertyContacts", + "isCollection": false, + "name": "Property Contacts", + "customFields": [ + { + "id": 6072728, + "fieldSelector": "propertyManager1", + "name": "Property Manager 1", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072729, + "fieldSelector": "sheriffContact", + "name": "Sheriff Contact", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072730, + "fieldSelector": "propertyManager2", + "name": "Property Manager 2", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072731, + "fieldSelector": "propertyManager3", + "name": "Property Manager 3", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072732, + "fieldSelector": "additionalBillingOnlyContac", + "name": "Additional Billing Only Contact", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 1, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072733, + "fieldSelector": "propertyManager4", + "name": "Property Manager 4", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 4, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072804, + "fieldSelector": "regionalPropertyManager", + "name": "Regional Property Manager", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072806, + "fieldSelector": "managementCompany", + "name": "Management Company", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 2, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170893, + "fieldSelector": "pullPropertyInfoFromProperty", + "name": "Pull Property Info from Property to Project", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 5, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/propertyContacts" + } + }, + { + "sectionSelector": "propertyInfo", + "isCollection": false, + "name": "Property Info", + "customFields": [ + { + "id": 6056739, + "fieldSelector": "propertyInfo", + "name": "Property Default Info", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6056742, + "fieldSelector": "propJustCause", + "name": "Project Just Cause?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 15, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059906, + "fieldSelector": "propertyType", + "name": "Property Type", + "dropdownItems": [ + "Multi family", + "Fourplex", + "Triplex", + "Duplex", + "Single Family Home", + "Single Family Residence (condo/ townhouse)", + "SRO cohabitant", + "Hotel", + "Mobilehome", + "Commercial" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059907, + "fieldSelector": "projectJustCauseCity", + "name": "Project Just Cause City", + "dropdownItems": [ + "None Apply", + "Alameda", + "Antioch", + "Berkeley", + "Concord", + "East Palo Alto", + "Emeryville", + "Hayward", + "Menlo Park", + "Mountain View", + "Oakland", + "Palo Alto", + "Richmond", + "Sacramento", + "San Francisco", + "San Jose", + "San Leandro", + "San Rafael", + "Sunnyvale", + "Union City", + "Unincorporated Alameda County", + "Unincorporated Sonoma County", + "Salinas - Repealed" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059908, + "fieldSelector": "CityJustCauseExemption", + "name": "City Just Cause Exemption", + "dropdownItems": [ + "None Apply", + "(Berkeley) Certain Owner Occupied Duplexes or Four", + "(Berkeley) Landlord and Tenant Cohabitate", + "(Concord) Owner Occupied Duplex", + "(Concord) Landlord and Tenant Cohabitate", + "(East Palo Alto) Landlord and Tenant Cohabitate", + "(Emeryville) Landlord and Tenants of 1 or 2 rooms", + "(Emeryville) Tax Credit Properties", + "(Hayward) Landlord and Tenant Cohabitate", + "(Menlo Park) Room Occupied by Family Member", + "(Menlo Park) 4 or fewer Dwelling units on 1 lot", + "(Menlo Park) Mobile Home", + "(Menlo Park) Condo", + "(Menlo Park) Employee Units", + "(Mountain View) Tax Credit Properties", + "(Mountain View) Initial Cert. of Occ. after 11/16", + "(Oakland) Landlord and Tenant Cohabitate", + "(Oakland) Initial Cert. of Occ. w/in last 10 year", + "(Palo Alto) Landlord and Tenant Cohabitate", + "(Palo Alto) Single Family Owner Occupied Residence", + "(Palo Alto) Owner Occupied Duplex or SFH w/ ADU", + "(Palo Alto) SFH with Notice of Exemption", + "(Palo Alto) Affordable Housing restricted by deed", + "(Richmond) Single Family Home Temporary Tenancy", + "(Richmond) Small 2nd Units if Owner lives in main", + "(Richmond) Landlord and Tenant Cohabitate", + "(Sacramento) Subs. tenant w/ rent based on income", + "(Sacramento) Landlord and Tenant Cohabitate", + "(Sacramento) Certificate of Occupancy issued after", + "(Sacramento) Single Family Home or Condo", + "(San Francisco) Affordable Housing and Tax Credit", + "(San Jose) Single Family Residence", + "(San Jose) Duplex", + "(San Jose) HUD, Section 8, or Tax Credit", + "(San Leandro) Housing under a regulatory agreement", + "(San Rafael) Gov't subs rent below 30% of income", + "(San Rafael) 50% or more regulatory agr. dev.", + "(San Rafael) Employee Units", + "(San Rafael) Occupied by owner or family", + "(Sunnyvale) LL and Tenant Cohabitate (incl. ADU)", + "(Sunnyvale) Owner occupied duplex", + "(Sunnyvale) SFH with Notice of Exemption", + "(Union City) LL and Tenants of 1 or 2 rooms Cohab.", + "(Union City) Tax Credit Properties" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2838050, + "targetCustomFieldID": 6059908, + "behavior": 0, + "parameterCustomFieldID": 6059907, + "whenTestType": 2, + "whenParameter": "None Apply" + } + ], + "row": 15, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6063823, + "fieldSelector": "PremisesCity", + "name": "Premises City", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6063836, + "fieldSelector": "PremisesCounty", + "name": "Premises County", + "dropdownItems": [ + "Alameda", + "Amador", + "Butte", + "Calaveras", + "Contra Costa", + "El Dorado", + "Fresno", + "Glenn", + "Humboldt", + "Lake", + "Lassen", + "Marin", + "Mendocino", + "Merced", + "Monterey", + "Napa", + "Nevada", + "Placer", + "Sacramento", + "San Benito", + "San Francisco", + "San Joaquin", + "San Luis Obispo", + "San Mateo", + "Santa Clara", + "Santa Cruz", + "Shasta", + "Solano", + "Sonoma", + "Stanislaus", + "Sutter", + "Tehama", + "Tuolumne", + "Yolo", + "Yuba" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070277, + "fieldSelector": "propertyPlaintiffName", + "name": "Plaintiff Legal Name (Caption)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070278, + "fieldSelector": "plaintiffEntityType", + "name": "Plaintiff Entity Type", + "dropdownItems": [ + "Individual", + "Corporation", + "LLC", + "Limited Partnership", + "Partnership", + "Public Entity", + "Trustee of Trust", + "Master Tenant", + "Custom Entity Blurb" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070279, + "fieldSelector": "plaintiffHQ", + "name": "Plaintiff HQ County", + "dropdownItems": [ + "Within Santa Clara County", + "Outside Santa Clara County" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070280, + "fieldSelector": "plaintiffRightToControl", + "name": "Plaintiff's Right to Control the Property", + "dropdownItems": [ + "Owned", + "Administered", + "Held under a master lease" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 8, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070283, + "fieldSelector": "justCauseAndAffordableSub", + "name": "Just Cause and Affordable/ Subsidy Info", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 14, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070284, + "fieldSelector": "PropertyFeeAgreementSaved", + "name": "Property Fee Agreement Saved in File", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070286, + "fieldSelector": "paintiffNameForCaseTitle", + "name": "Plaintiff Name for Short Case Title", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070287, + "fieldSelector": "multiplePlaintiffs", + "name": "Multiple Plaintiffs", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070288, + "fieldSelector": "propertyEntryCodeOrInstructions", + "name": "Property Entry Code or Special Instructions", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 6, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070294, + "fieldSelector": "projectTaxCreditUnit", + "name": "Project Tax Credit Unit", + "dropdownItems": [ + "Yes", + "No", + "Some Units are Tax Credit" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 16, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070297, + "fieldSelector": "projectPropertyHasAHUDSubsidy", + "name": "Project Property has a HUD Subsidy or any HUD Program", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 17, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070326, + "fieldSelector": "hUDProgramDescription", + "name": "HUD Program Description", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2835919, + "targetCustomFieldID": 6070326, + "behavior": 0, + "parameterCustomFieldID": 6070297, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 17, + "orderInRow": 2, + "isLocked": false, + "isRequired": true + }, + { + "id": 6070327, + "fieldSelector": "projectUnitCityBelowMarket", + "name": "Project Unit City Below Market Rental (BMR)", + "dropdownItems": [ + "Yes", + "No", + "Some Units are BMR" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 16, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070375, + "fieldSelector": "projectPropertyTPAExemption", + "name": "Project Property Tenant Protection Act Exemption", + "dropdownItems": [ + "Tenancy of Less than One Year", + "Tenancy of Less than Two Years, Some less than One", + "Hospital or care facility", + "Dormitories", + "Cohabitates with Owner", + "Single Family Home with ADU, Owner Occupied", + "Duplex, Owner Occupied", + "Certificate of Occupancy within 15 years", + "Single Family Residence & Notice Given", + "Single Family Residence - Notice Needed", + "Affordable Housing with Deed or Recorded Doc", + "Covered by City Just Cause" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070799, + "fieldSelector": "projectTenantProtectionActApplies", + "name": "Project Tenant Protection Act Applies", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 18, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6070800, + "fieldSelector": "projectPropertyNotes", + "name": "Project Property Notes", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 20, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071891, + "fieldSelector": "section8Tenancy_1", + "name": "Section 8 Tenancy", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 16, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073672, + "fieldSelector": "premisesAddressWithUnit", + "name": "Premises Address with Unit # (do NOT include city state zip)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6074197, + "fieldSelector": "customEntityBlurb", + "name": "Custom Entity Blurb", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2838858, + "targetCustomFieldID": 6074197, + "behavior": 0, + "parameterCustomFieldID": 6070278, + "whenTestType": 3, + "whenParameter": "Blurb" + } + ], + "row": 9, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081973, + "fieldSelector": "plaintiffS", + "name": "Plaintiff/s", + "dropdownItems": [ + "Plaintiff(s)", + "Plaintiff", + "Plaintiffs" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081974, + "fieldSelector": "plaintiffPossessive", + "name": "Plaintiff's'", + "dropdownItems": [ + "Plaintiff('s)", + "Plaintiff's", + "Plaintiffs'" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 11, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081975, + "fieldSelector": "plaintiffIsAre", + "name": "Plaintiff is are", + "dropdownItems": [ + "Plaintiff(s) are", + "Plaintiff is", + "Plaintiffs each are" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 11, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081976, + "fieldSelector": "plaintiffWasWere", + "name": "Plaintiff was were", + "dropdownItems": [ + "Plaintiff(s) were", + "Plaintiff was", + "Plaintiffs each were" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 11, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081977, + "fieldSelector": "plaintiffsWasAndIsWereAndAre", + "name": "Plaintiffs was and is, were and are", + "dropdownItems": [ + "Plaintiff(s) were, and now are", + "Plaintiff was, and now is", + "Plaintiffs were, and now are" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081978, + "fieldSelector": "plaintiffHasHave", + "name": "Plaintiff has have", + "dropdownItems": [ + "Plaintiff(s) have", + "Plaintiff has", + "Plaintiffs have" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 12, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6081983, + "fieldSelector": "plaintiffDoesDo", + "name": "Plaintiff Does Do", + "dropdownItems": [ + "Plaintiff(s) do", + "Plaintiff does", + "Plaintiffs do" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 12, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6082190, + "fieldSelector": "propertyNotes", + "name": "Property Notes", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [], + "row": 19, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6134526, + "fieldSelector": "plaintiffObjectSOr_", + "name": "Plaintiff Object S or _", + "dropdownItems": [ + "s", + "\"\"" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 12, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168415, + "fieldSelector": "premisesZip", + "name": "Premises Zip", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 4, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168509, + "fieldSelector": "requestMissingPropertyEmail", + "name": "Request Missing Property Emails", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 21, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170892, + "fieldSelector": "isThePropertyInAnUnincorporatedArea", + "name": "Is the Property in an unincorporated area of the County?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [], + "row": 4, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6170894, + "fieldSelector": "pullPropertyInfoFromProperty2", + "name": "Pull Property Info from Property to Project 2", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [], + "row": 2, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/propertyInfo" + } + }, + { + "sectionSelector": "serviceInfo", + "isCollection": true, + "name": "Service Attempts", + "customFields": [ + { + "id": 6056744, + "fieldSelector": "serviceDate", + "name": "Service Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [], + "row": 1, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059915, + "fieldSelector": "serviceTime", + "name": "Service Time or Times", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [], + "row": 1, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059916, + "fieldSelector": "serviceResult", + "name": "Service Result", + "dropdownItems": [ + "No Answer", + "Some Served", + "All Served" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 1, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6059917, + "fieldSelector": "serviceNotes", + "name": "Service Notes", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 4, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071892, + "fieldSelector": "partiesServedPersonalService", + "name": "Parties Served - Personal Service", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [ + { + "id": 2836814, + "targetCustomFieldID": 6071892, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071893, + "fieldSelector": "partiesServedSubService", + "name": "Parties Served - Sub Service", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [ + { + "id": 2836815, + "targetCustomFieldID": 6071893, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 5, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071894, + "fieldSelector": "partiesServedPostAndMail", + "name": "Parties Served - Post and Mailed", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [ + { + "id": 2836817, + "targetCustomFieldID": 6071894, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 5, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6071898, + "fieldSelector": "processServer", + "name": "Process Server", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [], + "row": 3, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072269, + "fieldSelector": "personServedOnBehalfOfEntity", + "name": "Person Served on Behalf of Entity, name and title/ descripotion", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2884790, + "targetCustomFieldID": 6072269, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 3, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072270, + "fieldSelector": "serviceDateOfMailing", + "name": "Service Date of Mailing", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2837046, + "targetCustomFieldID": 6072270, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072736, + "fieldSelector": "serviceAddress", + "name": "Service Address", + "dropdownItems": [ + "Premises", + "Alternate Address" + ], + "customFieldType": "Dropdown", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072737, + "fieldSelector": "alternateAddressForServiceAttempt", + "name": "Alternate Address where Service was Attempted", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837458, + "targetCustomFieldID": 6072737, + "behavior": 0, + "parameterCustomFieldID": 6072736, + "whenTestType": 3, + "whenParameter": "Alt" + } + ], + "row": 2, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6072738, + "fieldSelector": "alternateAddressDescription", + "name": "Alternate Address Description (Who's What)", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837460, + "targetCustomFieldID": 6072738, + "behavior": 0, + "parameterCustomFieldID": 6072736, + "whenTestType": 3, + "whenParameter": "Alt" + } + ], + "row": 2, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6159933, + "fieldSelector": "pushToDefendants", + "name": "Push to Defendants", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2888980, + "targetCustomFieldID": 6159933, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "serv" + } + ], + "row": 6, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6163816, + "fieldSelector": "personSubServed", + "name": "Person Sub Served, name and title/ description", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2884791, + "targetCustomFieldID": 6163816, + "behavior": 0, + "parameterCustomFieldID": 6059916, + "whenTestType": 3, + "whenParameter": "Served" + } + ], + "row": 3, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/serviceInfo" + } + }, + { + "sectionSelector": "trialMotionPrep", + "isCollection": false, + "name": "Doc Prep", + "customFields": [ + { + "id": 6072935, + "fieldSelector": "trialPrep", + "name": "Trial Prep", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2837911, + "targetCustomFieldID": 6072935, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 3, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073236, + "fieldSelector": "sectionsToInclude", + "name": "Sections to Include", + "dropdownItems": [ + "Trial Prep", + "Stipulations", + "MTQ", + "MTS", + "Demurrer", + "MTSA", + "Other Motion", + "Discovery", + "Dismissal", + "Ex Parte App for JDG" + ], + "customFieldType": "MultiSelectList", + "behaviors": [], + "row": 1, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073237, + "fieldSelector": "trialFreeStayDate", + "name": "Trial Free Stay Date", + "dropdownItems": [], + "customFieldType": "Date", + "behaviors": [ + { + "id": 2893768, + "targetCustomFieldID": 6073237, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 6, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073243, + "fieldSelector": "dailyRentDamages", + "name": "Daily Rent Damages", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893757, + "targetCustomFieldID": 6073243, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 5, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073244, + "fieldSelector": "dailyRentDamagesBegin", + "name": "Daily Rent Damages Begin", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893758, + "targetCustomFieldID": 6073244, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 6, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073245, + "fieldSelector": "adjustedOrCurrentRent", + "name": "Adjusted or Current Rent", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893761, + "targetCustomFieldID": 6073245, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 7, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073252, + "fieldSelector": "holdoverMonth1", + "name": "Holdover Month 1", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2893774, + "targetCustomFieldID": 6073252, + "behavior": 0, + "parameterCustomFieldID": 6073265, + "whenTestType": 3, + "whenParameter": "Standard" + } + ], + "row": 10, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073254, + "fieldSelector": "holdoverAmount1", + "name": "Holdover Amount 1", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2893775, + "targetCustomFieldID": 6073254, + "behavior": 0, + "parameterCustomFieldID": 6073265, + "whenTestType": 3, + "whenParameter": "Standard" + } + ], + "row": 10, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073256, + "fieldSelector": "holdoverMonth2", + "name": "Holdover Month 2", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837951, + "targetCustomFieldID": 6073256, + "behavior": 0, + "parameterCustomFieldID": 6073252, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 11, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073264, + "fieldSelector": "daysFromHoldoverBeginToTr", + "name": "Days from Holdover Begin to Trial", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [ + { + "id": 2893765, + "targetCustomFieldID": 6073264, + "behavior": 0, + "parameterCustomFieldID": 6073265, + "whenTestType": 3, + "whenParameter": "Daily" + } + ], + "row": 9, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073265, + "fieldSelector": "holdoverCalculationType", + "name": "Holdover Calculation Type", + "dropdownItems": [ + "Standard", + "By Daily Rent" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2893759, + "targetCustomFieldID": 6073265, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 5, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073267, + "fieldSelector": "holdoverBasedOnDailyRentCalc", + "name": "Holdover Based on Daily Rent Calc", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [ + { + "id": 2893766, + "targetCustomFieldID": 6073267, + "behavior": 0, + "parameterCustomFieldID": 6073265, + "whenTestType": 3, + "whenParameter": "Daily" + } + ], + "row": 9, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073269, + "fieldSelector": "holdoverAmount2", + "name": "Holdover Amount 2", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837956, + "targetCustomFieldID": 6073269, + "behavior": 0, + "parameterCustomFieldID": 6073252, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 11, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073271, + "fieldSelector": "holdoverMonth3", + "name": "Holdover Month 3", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837953, + "targetCustomFieldID": 6073271, + "behavior": 0, + "parameterCustomFieldID": 6073256, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 12, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073272, + "fieldSelector": "holdoverAmount3", + "name": "Holdover Amount 3", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837955, + "targetCustomFieldID": 6073272, + "behavior": 0, + "parameterCustomFieldID": 6073256, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 12, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073273, + "fieldSelector": "holdoverMonth4", + "name": "Holdover Month 4", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837957, + "targetCustomFieldID": 6073273, + "behavior": 0, + "parameterCustomFieldID": 6073271, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 13, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073274, + "fieldSelector": "holdoverAmount4", + "name": "Holdover Amount 4", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837958, + "targetCustomFieldID": 6073274, + "behavior": 0, + "parameterCustomFieldID": 6073271, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 13, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073275, + "fieldSelector": "holdoverMonth5", + "name": "Holdover Month 5", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837959, + "targetCustomFieldID": 6073275, + "behavior": 0, + "parameterCustomFieldID": 6073273, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073276, + "fieldSelector": "holdoverAmount5", + "name": "Holdover Amount 5", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837960, + "targetCustomFieldID": 6073276, + "behavior": 0, + "parameterCustomFieldID": 6073273, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 14, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073277, + "fieldSelector": "holdoverMonth6", + "name": "Holdover Month 6", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837961, + "targetCustomFieldID": 6073277, + "behavior": 0, + "parameterCustomFieldID": 6073275, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 15, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073278, + "fieldSelector": "holdoverAmount6", + "name": "Holdover Amount 6", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2893753, + "targetCustomFieldID": 6073278, + "behavior": 0, + "parameterCustomFieldID": 6073275, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 15, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073279, + "fieldSelector": "holdoverMonth7", + "name": "Holdover Month 7", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837963, + "targetCustomFieldID": 6073279, + "behavior": 0, + "parameterCustomFieldID": 6073277, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 16, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073280, + "fieldSelector": "holdoverAmount7", + "name": "Holdover Amount 7", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837964, + "targetCustomFieldID": 6073280, + "behavior": 0, + "parameterCustomFieldID": 6073277, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 16, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073281, + "fieldSelector": "holdoverMonth8", + "name": "Holdover Month 8", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837965, + "targetCustomFieldID": 6073281, + "behavior": 0, + "parameterCustomFieldID": 6073279, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 17, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073282, + "fieldSelector": "holdoverAmount8", + "name": "Holdover Amount 8", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837966, + "targetCustomFieldID": 6073282, + "behavior": 0, + "parameterCustomFieldID": 6073279, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 17, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073283, + "fieldSelector": "holdoverMonth9", + "name": "Holdover Month 9", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837970, + "targetCustomFieldID": 6073283, + "behavior": 0, + "parameterCustomFieldID": 6073281, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073284, + "fieldSelector": "holdoverAmount9", + "name": "Holdover Amount 9", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2837971, + "targetCustomFieldID": 6073284, + "behavior": 0, + "parameterCustomFieldID": 6073281, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 18, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073286, + "fieldSelector": "amountDemandedInNotice", + "name": "Amount Demanded in Notice", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893762, + "targetCustomFieldID": 6073286, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 7, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073287, + "fieldSelector": "trialDateDueDate", + "name": "Trial Date", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893769, + "targetCustomFieldID": 6073287, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 6, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073288, + "fieldSelector": "subpoenaNonStaffWitnesses", + "name": "Subpoena non-staff witnesses?", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2837976, + "targetCustomFieldID": 6073288, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 24, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073289, + "fieldSelector": "witness1Name", + "name": "Witness 1 Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837985, + "targetCustomFieldID": 6073289, + "behavior": 0, + "parameterCustomFieldID": 6073288, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 25, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073290, + "fieldSelector": "witness1Address", + "name": "Witness 1 Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837978, + "targetCustomFieldID": 6073290, + "behavior": 0, + "parameterCustomFieldID": 6073288, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 25, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073291, + "fieldSelector": "numberOfWitnesses", + "name": "Number of Witnesses", + "dropdownItems": [], + "customFieldType": "Integer", + "behaviors": [ + { + "id": 2838346, + "targetCustomFieldID": 6073291, + "behavior": 0, + "parameterCustomFieldID": 6073288, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 24, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073298, + "fieldSelector": "witness2Name", + "name": "Witness 2 Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837986, + "targetCustomFieldID": 6073298, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 26, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073299, + "fieldSelector": "witness2Address", + "name": "Witness 2 Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837987, + "targetCustomFieldID": 6073299, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "2" + } + ], + "row": 26, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073301, + "fieldSelector": "witness3Name", + "name": "Witness 3 Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837989, + "targetCustomFieldID": 6073301, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "3" + } + ], + "row": 27, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073302, + "fieldSelector": "witness3Address", + "name": "Witness 3 Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837990, + "targetCustomFieldID": 6073302, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "3" + } + ], + "row": 27, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073303, + "fieldSelector": "witness4Name", + "name": "Witness 4 Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837991, + "targetCustomFieldID": 6073303, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "4" + } + ], + "row": 28, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073304, + "fieldSelector": "witness4Address", + "name": "Witness 4 Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837992, + "targetCustomFieldID": 6073304, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "4" + } + ], + "row": 28, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073305, + "fieldSelector": "witness5Name", + "name": "Witness 5 Name", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837993, + "targetCustomFieldID": 6073305, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "5" + } + ], + "row": 29, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073306, + "fieldSelector": "witness5Address", + "name": "Witness 5 Address", + "dropdownItems": [], + "customFieldType": "String", + "behaviors": [ + { + "id": 2837994, + "targetCustomFieldID": 6073306, + "behavior": 0, + "parameterCustomFieldID": 6073291, + "whenTestType": 3, + "whenParameter": "5" + } + ], + "row": 29, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073307, + "fieldSelector": "dismissal", + "name": "Dismissal", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2887267, + "targetCustomFieldID": 6073307, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Dismissal" + } + ], + "row": 35, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073308, + "fieldSelector": "dismissAllParties", + "name": "Dismiss All Parties?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2895063, + "targetCustomFieldID": 6073308, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Dismissal" + } + ], + "row": 36, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073309, + "fieldSelector": "dismissWho", + "name": "Dismiss Who", + "dropdownItems": [], + "customFieldType": "PersonList", + "behaviors": [ + { + "id": 2895064, + "targetCustomFieldID": 6073309, + "behavior": 0, + "parameterCustomFieldID": 6073308, + "whenTestType": 1, + "whenParameter": "No" + } + ], + "row": 36, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073310, + "fieldSelector": "dismissalType", + "name": "Dismissal Type", + "dropdownItems": [ + "With Prejudice", + "Without Prejudice" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2895065, + "targetCustomFieldID": 6073310, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Dismissal" + } + ], + "row": 36, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073312, + "fieldSelector": "dismissalNotes", + "name": "Dismissal Notes", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2895066, + "targetCustomFieldID": 6073312, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Dismissal" + } + ], + "row": 37, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073843, + "fieldSelector": "exParteApplicationForJudg", + "name": "Ex Parte Application for Judgment Pursuant to Stipulation", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2838407, + "targetCustomFieldID": 6073843, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Ex Parte App for JDG" + } + ], + "row": 40, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073845, + "fieldSelector": "exParteNoticeDescription", + "name": "Ex Parte Notice Description", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2841644, + "targetCustomFieldID": 6073845, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Ex Parte App for JDG" + } + ], + "row": 41, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073849, + "fieldSelector": "descriptionOfBreach", + "name": "Brief Description of Breach", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2841647, + "targetCustomFieldID": 6073849, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Ex Parte App for JDG" + } + ], + "row": 41, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6073850, + "fieldSelector": "representativeWhoWillSign", + "name": "Representative who will sign the Declaration", + "dropdownItems": [], + "customFieldType": "PersonLink", + "behaviors": [ + { + "id": 2841646, + "targetCustomFieldID": 6073850, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Ex Parte App for JDG" + } + ], + "row": 41, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133394, + "fieldSelector": "totalHoldoverDamagesToTrial", + "name": "Total Holdover Damages to Trial Date", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [ + { + "id": 2869319, + "targetCustomFieldID": 6133394, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 19, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133395, + "fieldSelector": "totalRentAndDamagesToTrial", + "name": "Total Rent and Damages to Trial", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 19, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133396, + "fieldSelector": "amountDemandedInNotice2", + "name": "Amount Demanded in Notice 2", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2893763, + "targetCustomFieldID": 6133396, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 7, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133766, + "fieldSelector": "feeLimitIncludesCosts", + "name": "Fee Limit Includes Costs", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 20, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133768, + "fieldSelector": "attorneyFeeNotToExceedFe", + "name": "Attorney Fee Not to Exceed (Fee/ Costs Limit)", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893770, + "targetCustomFieldID": 6133768, + "behavior": 0, + "parameterCustomFieldID": 6133766, + "whenTestType": 3, + "whenParameter": "Limit of" + } + ], + "row": 20, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133769, + "fieldSelector": "totalAttorneySFees", + "name": "Total Attorney's Fees", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 20, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133770, + "fieldSelector": "areTheActualFeesTheFee", + "name": "Are the Actual Fees >= the Fee Limit", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [ + { + "id": 2893771, + "targetCustomFieldID": 6133770, + "behavior": 0, + "parameterCustomFieldID": 6133766, + "whenTestType": 3, + "whenParameter": "Limit of" + } + ], + "row": 20, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133771, + "fieldSelector": "awardableFees", + "name": "Awardable Fees", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 20, + "orderInRow": 5, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133772, + "fieldSelector": "totalCosts", + "name": "Total Recoverable Costs", + "dropdownItems": [], + "customFieldType": "ReferenceField", + "behaviors": [], + "row": 21, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133778, + "fieldSelector": "totalJudgmentAmount", + "name": "Total Judgment Amount", + "dropdownItems": [], + "customFieldType": "CalculatedCurrency", + "behaviors": [], + "row": 23, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6133779, + "fieldSelector": "totalAwardableCosts", + "name": "Total Awardable Costs", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [], + "row": 21, + "orderInRow": 4, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166950, + "fieldSelector": "prepareTrialWorksheet", + "name": "Prepare Trial Worksheet", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895076, + "targetCustomFieldID": 6166950, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 31, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166958, + "fieldSelector": "prepareJudgment", + "name": "Prepare Judgment", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887509, + "targetCustomFieldID": 6166958, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 31, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166959, + "fieldSelector": "prepareStipulatedJudgment", + "name": "Prepare Stipulated Judgment", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887498, + "targetCustomFieldID": 6166959, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 31, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166966, + "fieldSelector": "defendantsAtIssueList", + "name": "Defendants at Issue List", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [], + "row": 4, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6166967, + "fieldSelector": "defendantsInDefaultList", + "name": "Defendants In Default List", + "dropdownItems": [], + "customFieldType": "Text", + "behaviors": [ + { + "id": 2886569, + "targetCustomFieldID": 6166967, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 4, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168263, + "fieldSelector": "trialDocs", + "name": "Trial Docs", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2887269, + "targetCustomFieldID": 6168263, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 30, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168389, + "fieldSelector": "prepareStipJudgmentForPos", + "name": "Prepare Stip. Judgment for Possession Only", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887501, + "targetCustomFieldID": 6168389, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 32, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168390, + "fieldSelector": "stipJudgmentWithSetAside", + "name": "Stip. Judgment with Set Aside", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887500, + "targetCustomFieldID": 6168390, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 32, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168391, + "fieldSelector": "prepareStipToPayStay", + "name": "Prepare Stip. to Pay & Stay", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887502, + "targetCustomFieldID": 6168391, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 32, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168392, + "fieldSelector": "prepareStipToPayVacate", + "name": "Prepare Stip. to Pay & Vacate", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887503, + "targetCustomFieldID": 6168392, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 33, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168393, + "fieldSelector": "prepareMaskingStip", + "name": "Prepare Masking Stip.", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887504, + "targetCustomFieldID": 6168393, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 33, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6168394, + "fieldSelector": "prepareMaskingStipWWaiver", + "name": "Prepare Masking Stip. w/ Waiver", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2887505, + "targetCustomFieldID": 6168394, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 33, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172170, + "fieldSelector": "stipulations", + "name": "Stipulations", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2890194, + "targetCustomFieldID": 6172170, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 45, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172171, + "fieldSelector": "stipulationType", + "name": "StipulationType", + "dropdownItems": [ + "Stipulated Judgment", + "Stipulated Judgment for Possession Only", + "Stipulated Judgment with Set Aside", + "Stipulation & Order - Pay & Stay", + "Stipulation & Order - Pay & Vacate" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2890195, + "targetCustomFieldID": 6172171, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 46, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172189, + "fieldSelector": "maskingStip", + "name": "Masking Stip", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890319, + "targetCustomFieldID": 6172189, + "behavior": 0, + "parameterCustomFieldID": 6172412, + "whenTestType": 1, + "whenParameter": "Yes" + } + ], + "row": 49, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172200, + "fieldSelector": "stipulatedJudgment", + "name": "Stipulated Judgment", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890208, + "targetCustomFieldID": 6172200, + "behavior": 0, + "parameterCustomFieldID": 6172171, + "whenTestType": 1, + "whenParameter": "Stipulated Judgment" + } + ], + "row": 49, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172209, + "fieldSelector": "stipulatedJudgmentForPossession", + "name": "Stipulated Judgment for Possession Only", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890210, + "targetCustomFieldID": 6172209, + "behavior": 0, + "parameterCustomFieldID": 6172171, + "whenTestType": 1, + "whenParameter": "Stipulated Judgment for Possession Only" + } + ], + "row": 49, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172210, + "fieldSelector": "stipulatedJudgmentWithSetAside", + "name": "Stipulated Judgment with Stip to Set Aside", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890211, + "targetCustomFieldID": 6172210, + "behavior": 0, + "parameterCustomFieldID": 6172171, + "whenTestType": 1, + "whenParameter": "Stipulated Judgment with Set Aside" + } + ], + "row": 49, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172211, + "fieldSelector": "stipOrderPayStay", + "name": "Stip & Order - Pay & Stay", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890215, + "targetCustomFieldID": 6172211, + "behavior": 0, + "parameterCustomFieldID": 6172171, + "whenTestType": 1, + "whenParameter": "Stipulation & Order - Pay & Stay" + } + ], + "row": 48, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172214, + "fieldSelector": "stipOrderPayVacate", + "name": "Stip & Order - Pay & Vacate", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [ + { + "id": 2890216, + "targetCustomFieldID": 6172214, + "behavior": 0, + "parameterCustomFieldID": 6172171, + "whenTestType": 1, + "whenParameter": "Stipulation & Order - Pay & Vacate" + } + ], + "row": 48, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172404, + "fieldSelector": "IncludeDefendantPaymentsInStip", + "name": "Defendant Payments?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890312, + "targetCustomFieldID": 6172404, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 46, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172412, + "fieldSelector": "IncludeMaskingStipulationInStip", + "name": "Masking Stipulation?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890311, + "targetCustomFieldID": 6172412, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 46, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172415, + "fieldSelector": "neutralReference", + "name": "Neutral Reference?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890313, + "targetCustomFieldID": 6172415, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 47, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172416, + "fieldSelector": "IncludeWaiverOfClaimsInStip", + "name": "Waiver of Claims", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890314, + "targetCustomFieldID": 6172416, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 47, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6172417, + "fieldSelector": "IncludePlaintiffToPayRelocationInStip", + "name": "Plaintiff to Pay Relocation?", + "dropdownItems": [], + "customFieldType": "Boolean", + "behaviors": [ + { + "id": 2890315, + "targetCustomFieldID": 6172417, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Stipulations" + } + ], + "row": 47, + "orderInRow": 3, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178368, + "fieldSelector": "dailyRentDamages2", + "name": "Daily Rent Damages 2", + "dropdownItems": [], + "customFieldType": "Currency", + "behaviors": [ + { + "id": 2893746, + "targetCustomFieldID": 6178368, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 5, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178371, + "fieldSelector": "daysCalculator", + "name": "Days Calculator", + "dropdownItems": [], + "customFieldType": "ActionButton", + "behaviors": [ + { + "id": 2893773, + "targetCustomFieldID": 6178371, + "behavior": 0, + "parameterCustomFieldID": 6073265, + "whenTestType": 3, + "whenParameter": "daily" + } + ], + "row": 9, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178420, + "fieldSelector": "prepareOtherDocument", + "name": "Prepare Other Document", + "dropdownItems": [], + "customFieldType": "OutlawTemplate", + "behaviors": [], + "row": 53, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178430, + "fieldSelector": "randomDocumentsToPrepare", + "name": "Random Documents to Prepare", + "dropdownItems": [ + "App for Sheriff to Proceed - failure to file COP", + "App to Issue New Writ - Lost Original", + "App to Strike Serial Post Judgment Claims", + "App to Vacate Dismissal - Filed in Error", + "App to Vacate Dismissal - Missed OSC", + "App to Vacate Dismissal - Missed Trial", + "App to Vacate Stipulated Judgment And Dismiss", + "App to Vacate Stipulated Judgment", + "App to Amend Complaint, Judgment, Writ", + "App to Amend - Server Declaration" + ], + "customFieldType": "MultiSelectList", + "behaviors": [], + "row": 2, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6178431, + "fieldSelector": "appForSheriffToProceedFollowingFailuretoFileCOP", + "name": "App for Sheriff to Proceed following failure to file COP", + "dropdownItems": [], + "customFieldType": "Header", + "behaviors": [ + { + "id": 2893913, + "targetCustomFieldID": 6178431, + "behavior": 0, + "parameterCustomFieldID": 6178430, + "whenTestType": 3, + "whenParameter": "App for Sheriff to Proceed - failure to file COP" + } + ], + "row": 50, + "orderInRow": 0, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180062, + "fieldSelector": "selectCountyThatRequiresJudgment", + "name": "Select County that Requires Judicial Council Form Judgment", + "dropdownItems": [ + "San Joaquin (UD-110)", + "Sacramento (UD-110)" + ], + "customFieldType": "Dropdown", + "behaviors": [ + { + "id": 2894960, + "targetCustomFieldID": 6180062, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Trial Prep" + } + ], + "row": 34, + "orderInRow": 1, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180063, + "fieldSelector": "prepareUD110Judgment", + "name": "Prepare UD-110 Judgment", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895044, + "targetCustomFieldID": 6180063, + "behavior": 0, + "parameterCustomFieldID": 6180062, + "whenTestType": 3, + "whenParameter": "(UD-110)" + } + ], + "row": 34, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + }, + { + "id": 6180128, + "fieldSelector": "prepareDismissal", + "name": "Prepare Dismissal", + "dropdownItems": [], + "customFieldType": "ReportFusion", + "behaviors": [ + { + "id": 2895067, + "targetCustomFieldID": 6180128, + "behavior": 0, + "parameterCustomFieldID": 6073236, + "whenTestType": 3, + "whenParameter": "Dismissal" + } + ], + "row": 37, + "orderInRow": 2, + "isLocked": false, + "isRequired": false + } + ], + "links": { + "self": "ProjectTypes/Filevine.PublicApi.Models.Identifier/Sections/trialMotionPrep" + } + } + ], + "links": { + "self": "/projecttypess/34111/sections?name=&offset=0&limit=50&requestedFields=*", + "prev": null, + "next": null + } + }, + "headers": { + "Date": "Wed, 05 Nov 2025 21:28:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Transfer-Encoding": "chunked", + "Connection": "keep-alive", + "Server": "cloudflare", + "access-control-allow-headers": "Content-Type, x-fv-orgid, x-fv-clientip, x-fv-userid, authorization, x-fv-application", + "access-control-allow-methods": "GET, POST, PUT, PATCH, DELETE, OPTIONS, LOCK, UNLOCK, PROPPATCH, PROPFIND", + "access-control-allow-origin": "*", + "Cache-Control": "no-store, must-revalidate, no-cache, max-age=0, private", + "ratelimit-limit": "10;r=3300;w=60;c=Customer Temp", + "ratelimit-remaining": "9;r=3300;w=60;c=Customer Temp", + "content-security-policy": "default-src 'self';child-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://app.vinesign.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com https://app.pendo.io https://feedback.us.pendo.io docs.google.com https://feedback.filevine.com *.newrelic.com *.filev.io *.flvn.io filev.io flvn.io 'self';connect-src *.filevinedev.com *.filevineapp.com *.filevine.ca *.filevine.com *.filevinegov.com *.fvauth.com https://app.vinesign.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.amazonaws.com *.nr-data.net *.pendo.io *.pdftron.com *.typeform.com *.newrelic.com https://app.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://localhost:8080 *.filev.io *.flvn.io filev.io flvn.io 'self' blob: wss:;font-src *.bootstrapcdn.com fonts.gstatic.com *.typekit.net *.typeform.com 'self' data: blob:;frame-src *;frame-ancestors https://*.filevineapp.com https://app.pendo.io 'self';img-src *.typekit.net *.typeform.com https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-globalproducts-prod-us-logos.s3.us-west-2.amazonaws.com https://us.fv-globalproducts-logos.prod.filevine.com https://fv-prod-us-shard-h-fv-internal-image.s3.amazonaws.com https://fv-prod-us-shard-h-fv-internal-image.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io *.kaywa.com www.googletagmanager.com 'self' data: blob: cid:;manifest-src 'self';media-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com https://us-shard-h-discussions.filevineapp.com *.filev.io *.flvn.io filev.io flvn.io 'self';object-src https://fv-prod-us-shard-h-images.s3.amazonaws.com https://fv-prod-us-shard-h-images.s3.us-west-2.amazonaws.com https://fv-prod-us-shard-h-docs.s3.amazonaws.com https://fv-prod-us-shard-h-docs.s3.us-west-2.amazonaws.com https://medchron-results-prod.s3.amazonaws.com https://medchron-results-prod.s3.us-east-1.amazonaws.com https://fv-prod-us-shard-h-report-export.s3.us-west-2.amazonaws.com *.filev.io *.flvn.io filev.io flvn.io 'self';script-src *.bootstrapcdn.com *.typekit.net *.typeform.com *.newrelic.com *.nr-data.net https://app.pendo.io https://cdn.pendo.io https://data.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://code.jquery.com https://localhost:8080 https://www.googletagmanager.com 'unsafe-inline' 'unsafe-eval' 'self' blob:;style-src *.bootstrapcdn.com fonts.googleapis.com *.typekit.net *.typeform.com https://app.pendo.io https://pendo-static-5683967597215744.storage.googleapis.com https://pendo-io-static.storage.googleapis.com https://duuxdetkhlwyv.cloudfront.net https://cdn.pendo.io https://data.pendo.io 'unsafe-inline' 'self';worker-src 'self' blob: 'unsafe-inline'", + "x-filevine-api-version": "3.3478.1.0", + "x-fv-correlation-id": "99a6d082b35445f1bff08bdbb9fa8d6b", + "x-aspnet-version": "4.0.30319", + "x-powered-by": "ASP.NET", + "x-content-type-options": "nosniff", + "x-frame-option": "SAMEORIGIN", + "x-xss-protection": "1; mode=block", + "x-fv-gateway-correlation-id": "99a6d082b35445f1bff08bdbb9fa8d6b", + "cf-cache-status": "DYNAMIC", + "Content-Encoding": "gzip", + "CF-RAY": "999f71132cd1ec60-SEA", + "alt-svc": "h3=\":443\"; ma=86400" + } + } +} \ No newline at end of file diff --git a/generate_sample.py b/generate_sample.py index 8bbe69c..5f6aa5b 100644 --- a/generate_sample.py +++ b/generate_sample.py @@ -23,26 +23,150 @@ def get_bearer_token(): # Define the collection of request/response pairs # User can add more tuples following the same pattern -SAMPLE_PROJECT_ID = 15905506 +SAMPLE_PROJECT_ID = 15974631 +SAMPLE_CLIENT_ID = 43407853 +SAMPLE_FOLDER_ID = 138954131 +SAMPLE_PROJECT_TYPE = 34111 + REQUESTS = [ - ( - { - "url": "https://api.filevineapp.com/fv-app/v2/projects", - "headers": { - "Accept": "application/json", - "Authorization": f"Bearer {get_bearer_token()}", - "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), - "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), - }, - "params": {}, - "method": "GET" +# ( +# { +# "url": "https://api.filevineapp.com/fv-app/v2/projects", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" - }, - "examples/project_list.json" - ), +# }, +# "examples/project_list.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/projects/{SAMPLE_PROJECT_ID}", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/project.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/contacts", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/project_contacts.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/contacts/{SAMPLE_CLIENT_ID}", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/client.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/folders/{SAMPLE_FOLDER_ID}", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/folder.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/folders/{SAMPLE_FOLDER_ID}/children", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/folder_children.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/DocumentSearch?projectId={SAMPLE_PROJECT_ID}&searchTerm=notice", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/document_search.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/ProjectTypes/{SAMPLE_PROJECT_TYPE}", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/project_type.json" +# ), +# ( +# { +# "url": f"https://api.filevineapp.com/fv-app/v2/ProjectTypes/{SAMPLE_PROJECT_TYPE}/sections", +# "headers": { +# "Accept": "application/json", +# "Authorization": f"Bearer {get_bearer_token()}", +# "x-fv-orgid": os.environ.get("FILEVINE_ORG_ID"), +# "x-fv-userid": os.environ.get("FILEVINE_USER_ID"), +# }, +# "params": {}, +# "method": "GET" + +# }, +# "examples/project_type_sections.json" +# ), ( { - "url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/contacts", + "url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/Forms/complaintInfo", "headers": { "Accept": "application/json", "Authorization": f"Bearer {get_bearer_token()}", @@ -53,11 +177,11 @@ REQUESTS = [ "method": "GET" }, - "examples/project_contacts.json" + "examples/forms__complaintInfo.json" ), ( { - "url": f"https://api.filevineapp.com/fv-app/v2/contacts/43125866", + "url": f"https://api.filevineapp.com/fv-app/v2/Projects/{SAMPLE_PROJECT_ID}/Forms/newFileReview", "headers": { "Accept": "application/json", "Authorization": f"Bearer {get_bearer_token()}", @@ -68,8 +192,8 @@ REQUESTS = [ "method": "GET" }, - "examples/client.json" -) + "examples/forms__newFileReview.json" +) ] def generate_sample_request_response(request_config): @@ -83,6 +207,7 @@ def generate_sample_request_response(request_config): "sample_response": { "status_code": response.status_code, "json": response.json() if response.content else None, + "xxx": str(response.content), "headers": dict(response.headers) } } @@ -108,4 +233,4 @@ if __name__ == "__main__": print(f"Generated {len(REQUESTS)} sample request/response pairs") except Exception as e: - print(f"Error: {e}") \ No newline at end of file + print(f"Error: {e}") diff --git a/templates/dashboard.html b/templates/dashboard.html index 95253ad..b5f92bb 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -5,183 +5,118 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% for r in rows %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {% else %} - + {% endfor %}
Project IDProject NameClient NameProject TypePhase NamePhase DateCreated DateLast ActivityProject EmailProject URLDefendant NameDefendant TypeDefendant RoleDefendant EmailDefendant PhoneDefendant AddressProperty Manager NameProperty Manager TypeProperty Manager RoleProperty Manager EmailProperty Manager PhoneProperty Manager AddressAttorney NameAttorney TypeAttorney RoleAttorney EmailAttorney PhoneAttorney AddressMatter NumClient / PropertyMatter DescriptionDefendant 1Matter OpenPractice AreaNotice TypeCase NumberPremises AddressPremises CityClient Email (Primary)Responsible Attorney and best contactStaff person currently in charge of your case, with contact info2nd Staff person currently in charge of your case, with contact infoLink to Hona PortalMatter StageCompleted TasksPending TasksNotice Service DateNotice Expir. DateDate Case FiledDaily Rent DamagesDefault DateDefault Entered OnMotions:Demurrer Hearing DateMotion To Strike Hearing DateMotion to Quash Hearing DateOther Motion Hearing DateMSC DateMSC TimeMSC AddressMSC Div/ Dept/ RoomTrial DateTrial TimeTrial AddressTrial Div/ Dept/ RoomFinal Result of Trial/ MSCDate of SettlementFinal Obligation Under the StipDef's Comply with the Stip?Judgment DateWrit Issued DateScheduled LockoutOppose Stays?Premises Safety or Access IssuesMatter Gate or Entry CodeDate Possession RecoveredAttorney's FeesCostsService Attempt Date 1
{{ r.ProjectId or '—' }}{{ r.ProjectName or '—' }}{{ r.client or '—' }}{{ r.projectTypeCode or '—' }}{{ r.phaseName or '—' }}{{ (r.phaseDate or '')[:10] }}{{ (r.createdDate or '')[:10] }}{{ (r.lastActivity or '')[:10] }}{{ r.ProjectEmailAddress or '—' }} - {% if r.projectUrl %} - Open - {% else %}—{% endif %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) %} - {{ c.orgContact.firstName }} {{ c.orgContact.lastName }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) %} - {{ (c.orgContact.personTypes or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) %} - {{ (c.roles or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) and c.orgContact.emails %} - {{ c.orgContact.emails[0].address }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) and c.orgContact.phones %} - {{ c.orgContact.phones[0].number }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Defendant' in (c.roles or []) and c.orgContact.addresses %} - {{ c.orgContact.addresses[0].fullAddress }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) %} - {{ c.orgContact.firstName }} {{ c.orgContact.lastName }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) %} - {{ (c.orgContact.personTypes or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) %} - {{ (c.roles or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) and c.orgContact.emails %} - {{ c.orgContact.emails[0].address }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) and c.orgContact.phones %} - {{ c.orgContact.phones[0].number }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Property Manager' in (c.roles or []) and c.orgContact.addresses %} - {{ c.orgContact.addresses[0].fullAddress }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) %} - {{ c.orgContact.firstName }} {{ c.orgContact.lastName }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) %} - {{ (c.orgContact.personTypes or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) %} - {{ (c.roles or ['—']) | join(', ') }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) and c.orgContact.emails %} - {{ c.orgContact.emails[0].address }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) and c.orgContact.phones %} - {{ c.orgContact.phones[0].number }} - {% endif %} - {% endfor %} - - {% for c in r.contacts %} - {% if 'Attorney' in (c.roles or []) and c.orgContact.addresses %} - {{ c.orgContact.addresses[0].fullAddress }} - {% endif %} - {% endfor %} - {{ r.client }}{{ r.matter_description }}{{ r.defendant_1 }}{{ r.matter_open }}{{ r.notice_type }}{{ r.case_number }}
No matching projects found.No matching projects found.